|
X-Boost
2.3.8
|
#include <IndirectDecisionTree.h>
Public Member Functions | |
| IndirectDecisionTree (const IndirectDecisionTree< DataType > &src) | |
| void | operator= (const IndirectDecisionTree< DataType > &src) |
| void | print (int depth) |
| int | classify (const DataType *features, long stride) const |
| execute classification using the DecisionTree | |
| int | operator() (const DataType *features, long stride) const |
Static Public Member Functions | |
| static std::string | signature () |
Public Attributes | |
| int | classifier |
| index to a Binary Classifier | |
| DataType | th |
| Classifier Threshold. | |
| int | category |
| if not a node, a category | |
| IndirectDecisionTree< DataType > * | left |
| sub-nodes (if null is a leaf) | |
| IndirectDecisionTree< DataType > * | right |
An [indirect] decision Tree. It contains an index of a feature. If has some sub-nodes,uses th to split in them. If not have subnodes, it reports the category
1.8.7