-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDESCRIPTION
62 lines (62 loc) · 1.83 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
60
61
62
Package: swag
Type: Package
Title: Sparse Wrapper Algorithm
Version: 0.1.1
Authors@R: c(
person("Samuel", "Orso", email="[email protected]", role=c("aut","cre")),
person("Gaetan", "Bakalli", role="aut"),
person("Cesare", "Miglioli", role="aut"),
person("Stephane", "Guerrier", role="ctb"),
person("Roberto", "Molinari", role="ctb"))
Maintainer: Samuel Orso <[email protected]>
Description: An algorithm that trains a meta-learning procedure that combines
screening and wrapper methods to find a set of extremely low-dimensional attribute
combinations. This package works on top of the 'caret' package and proceeds in a
forward-step manner. More specifically, it builds and tests learners starting
from very few attributes until it includes a maximal number of attributes by
increasing the number of attributes at each step. Hence, for each fixed number
of attributes, the algorithm tests various (randomly selected) learners and
picks those with the best performance in terms of training error. Throughout,
the algorithm uses the information coming from the best learners at the previous
step to build and test learners in the following step. In the end, it outputs
a set of strong low-dimensional learners.
License: GPL (>= 2)
Encoding: UTF-8
LazyData: false
Depends: R (>= 4.0.0)
Imports:
caret,
lattice,
Rdpack (>= 0.7),
stats,
dplyr
Suggests:
doParallel,
e1071,
foreach,
ggplot2,
glmnet,
grDevices,
iterators,
kernlab,
knitr,
methods,
mlbench,
ModelMetrics,
nlme,
parallel,
plyr,
pROC,
randomForest,
recipes,
remotes,
reshape2,
stats4,
rmarkdown,
utils,
withr
RdMacros: Rdpack
VignetteBuilder: knitr
RoxygenNote: 7.1.1
URL: https://github.com/SMAC-Group/SWAG-R-Package/
BugReports: https://github.com/SMAC-Group/SWAG-R-Package/issues/