See: Description
| Interface | Description |
|---|---|
| TreeBasedClassifier |
Base interface for decision-tree-based classifiers in this package, whether they be a single
DecisionTree or a collection of them as a DecisionForest. |
| Class | Description |
|---|---|
| DecisionForest |
An ensemble classifier based on many
DecisionTrees. |
| DecisionNode |
Represents an internal node in a
DecisionTree, which encapsulates a binary decision over a
feature in an example. |
| DecisionTree |
A decision-tree classifier.
|
| TerminalNode |
Represents a leaf node in a
DecisionTree, which contains a Prediction for a target
rather than a decision over an example. |
| TreeNode |
Implementations of this interface represent nodes in a
DecisionTree, whether
leaves (TerminalNode) or internal nodes (DecisionNode). |
Copyright © 2014–2018. All rights reserved.