d-tree ~master (2022-03-01T12:52:15.264018)
Dub
Repo
DecisionTree
dtree
tree
Undocumented in source.
struct
DecisionTree (
DecisionPolicy
) {
size_t
nOutput
;
size_t
maxDepth
;
size_t
minElement
;
Node
*
root
;
auto
fit
(Xs xs, Ys ys);
auto
predict
(X x);
}
Members
Functions
fit
auto
fit
(Xs xs, Ys ys)
Undocumented in source. Be warned that the author may not have intended to support it.
predict
auto
predict
(X x)
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
maxDepth
size_t
maxDepth
;
Undocumented in source.
minElement
size_t
minElement
;
Undocumented in source.
nOutput
size_t
nOutput
;
Undocumented in source.
root
Node
*
root
;
Undocumented in source.
Meta
Source
See Implementation
dtree
tree
aliases
ClassificationTree
RegressionTree
structs
DecisionTree