Adversarial random forests for density estimation and generative modeling
Adversarial random forests (ARFs) recursively partition data into fully factorized leaves, where features are jointly independent. The procedure is iterative, with alternating rounds of generation and discrimination. Data become increasingly realistic at each round, until original and synthetic samples can no longer be reliably distinguished. This is useful for several unsupervised learning tasks, such as density estimation and data synthesis. Methods for both are implemented in this package. ARFs naturally handle unstructured data with mixed continuous and categorical covariates. They inherit many of the benefits of RFs, including speed, flexibility, and solid performance with default parameters.
To install the development version from GitHub using
devtools
, run
::install_github("bips-hb/arf") devtools
To run an adversarial random forest on the iris data, perform density estimation and calculate log-likelihood on the same data:
<- adversarial_rf(iris)
arf <- forde(arf, iris)
psi mean(lik(arf, psi, iris))
To generate synthetic data based on the iris data:
<- adversarial_rf(iris)
arf <- forde(arf, iris)
psi forge(psi, 100)