Uses of Class
moa.classifiers.trees.ARFFIMTDD.Node
-
Packages that use ARFFIMTDD.Node Package Description moa.classifiers.trees -
-
Uses of ARFFIMTDD.Node in moa.classifiers.trees
Subclasses of ARFFIMTDD.Node in moa.classifiers.trees Modifier and Type Class Description static class
ARFFIMTDD.InnerNode
static class
ARFFIMTDD.LeafNode
static class
ARFFIMTDD.SplitNode
Fields in moa.classifiers.trees declared as ARFFIMTDD.Node Modifier and Type Field Description protected ARFFIMTDD.Node
ARFFIMTDD.Node. alternateTree
protected ARFFIMTDD.Node
ARFFIMTDD.Node. originalNode
protected ARFFIMTDD.Node
ARFFIMTDD.Node. parent
protected ARFFIMTDD.Node
ARFFIMTDD. treeRoot
Fields in moa.classifiers.trees with type parameters of type ARFFIMTDD.Node Modifier and Type Field Description protected AutoExpandVector<ARFFIMTDD.Node>
ARFFIMTDD.InnerNode. children
Methods in moa.classifiers.trees that return ARFFIMTDD.Node Modifier and Type Method Description ARFFIMTDD.Node
ARFFIMTDD.SplitNode. descendOneStep(Instance inst)
ARFFIMTDD.Node
ARFFIMTDD.InnerNode. getChild(int index)
ARFFIMTDD.Node
ARFFIMTDD.Node. getParent()
Return the parent nodeMethods in moa.classifiers.trees with parameters of type ARFFIMTDD.Node Modifier and Type Method Description protected void
ARFFIMTDD. attemptToSplit(ARFFIMTDD.LeafNode node, ARFFIMTDD.Node parent, int parentIndex)
void
ARFFIMTDD.Node. copyStatistics(ARFFIMTDD.Node node)
int
ARFFIMTDD.InnerNode. getChildIndex(ARFFIMTDD.Node child)
int
ARFFIMTDD.LeafNode. getChildIndex(ARFFIMTDD.Node child)
int
ARFFIMTDD.Node. getChildIndex(ARFFIMTDD.Node child)
void
ARFFIMTDD. processInstance(Instance inst, ARFFIMTDD.Node node, double prediction, double normalError, boolean growthAllowed, boolean inAlternate)
void
ARFFIMTDD.InnerNode. setChild(int index, ARFFIMTDD.Node child)
void
ARFFIMTDD.LeafNode. setChild(int parentBranch, ARFFIMTDD.Node node)
void
ARFFIMTDD.Node. setChild(int parentBranch, ARFFIMTDD.Node node)
void
ARFFIMTDD.Node. setParent(ARFFIMTDD.Node parent)
Set the parent node
-