-
Notifications
You must be signed in to change notification settings - Fork 2
/
DESCRIPTION
59 lines (59 loc) · 2.09 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Package: arf
Title: Adversarial Random Forests
Version: 0.2.2
Date: 2024-05-29
Authors@R:
c(person(given = "Marvin N.",
family = "Wright",
role = c("aut", "cre"),
email = "cran@wrig.de",
comment = c(ORCID = "0000-0002-8542-6291")),
person(given = "David S.",
family = "Watson",
role = c("aut"),
email = "david.s.watson11@gmail.com",
comment = c(ORCID = "0000-0001-9632-2159")),
person(given = "Kristin",
family = "Blesch",
role = c("aut"),
comment = c(ORCID = "0000-0001-6241-3079")),
person(given = "Jan",
family = "Kapar",
role = c("aut"),
comment = c(ORCID = "0009-0000-6408-2840")))
Maintainer: Marvin N. Wright <cran@wrig.de>
Description: 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 becomes 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 random forests,
including speed, flexibility, and solid performance with default parameters.
For details, see Watson et al. (2022) <arXiv:2205.09435>.
License: GPL (>= 3)
URL: https://github.com/bips-hb/arf,
https://bips-hb.github.io/arf/
BugReports: https://github.com/bips-hb/arf/issues
Imports:
data.table,
ranger,
foreach,
stringr,
truncnorm
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
Suggests:
ggplot2,
doParallel,
doFuture,
mlbench,
knitr,
rmarkdown,
tibble,
testthat (>= 3.0.0)
Config/testthat/edition: 3
VignetteBuilder: knitr