Package | Description |
---|---|
jsat.classifiers.trees |
Modifier and Type | Class and Description |
---|---|
protected static class |
DecisionTree.Node |
Modifier and Type | Method and Description |
---|---|
abstract TreeNodeVisitor |
TreeNodeVisitor.clone() |
abstract TreeNodeVisitor |
TreeNodeVisitor.getChild(int child)
Returns the node for the specific child, or null if the child index was
not valid
|
TreeNodeVisitor |
DecisionTree.Node.getChild(int child) |
TreeNodeVisitor |
TreeLearner.getTreeNodeVisitor()
Obtains a node visitor for the tree learner that can be used to traverse
and predict from the learned tree
|
TreeNodeVisitor |
ExtraTree.getTreeNodeVisitor() |
TreeNodeVisitor |
ERTrees.getTreeNodeVisitor() |
TreeNodeVisitor |
DecisionTree.getTreeNodeVisitor() |
Modifier and Type | Method and Description |
---|---|
static void |
TreePruner.prune(TreeNodeVisitor root,
TreePruner.PruningMethod method,
ClassificationDataSet testSet)
Performs pruning starting from the root node of a tree
|
static void |
TreePruner.prune(TreeNodeVisitor root,
TreePruner.PruningMethod method,
List<DataPointPair<Integer>> testSet)
Performs pruning starting from the root node of a tree
|
void |
TreeNodeVisitor.setPath(int child,
TreeNodeVisitor node)
Optional operation!
This method, if supported, will set the path so that the child is set to the given value. |
void |
DecisionTree.Node.setPath(int child,
TreeNodeVisitor node) |
Copyright © 2017. All rights reserved.