d-tree ~master (2022-03-01T12:52:15.264018)
Dub
Repo
RandomForest
dtree
forest
Undocumented in source.
struct
RandomForest (
Tree
) {
Tree
initTree
;
size_t
nTree
;
bool
bootstrap
;
Tree
[]
trees
;
void
fit
(Xs xs, Ys ys);
auto
predict
(X x);
}
Members
Functions
fit
void
fit
(Xs xs, Ys ys)
Undocumented in source.
predict
auto
predict
(X x)
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
bootstrap
bool
bootstrap
;
Undocumented in source.
initTree
Tree
initTree
;
Undocumented in source.
nTree
size_t
nTree
;
Undocumented in source.
trees
Tree
[]
trees
;
Undocumented in source.
Meta
Source
See Implementation
dtree
forest
functions
toRandomForest
structs
RandomForest