-
m_trainInstances
Instances m_trainInstances
The instances used to train the tree
-
m_root
PredictionNode m_root
The root of the tree
-
m_random
java.util.Random m_random
The random number generator - used for the random search heuristic
-
m_lastAddedSplitNum
int m_lastAddedSplitNum
The number of the last splitter added to the tree
-
m_numericAttIndices
int[] m_numericAttIndices
An array containing the inidices to the numeric attributes in the data
-
m_nominalAttIndices
int[] m_nominalAttIndices
An array containing the inidices to the nominal attributes in the data
-
m_trainTotalWeight
double m_trainTotalWeight
The total weight of the instances - used to speed Z calculations
-
m_posTrainInstances
ReferenceInstances m_posTrainInstances
The training instances with positive class - referencing the training dataset
-
m_negTrainInstances
ReferenceInstances m_negTrainInstances
The training instances with negative class - referencing the training dataset
-
m_search_bestInsertionNode
PredictionNode m_search_bestInsertionNode
The best node to insert under, as found so far by the latest search
-
m_search_bestSplitter
Splitter m_search_bestSplitter
The best splitter to insert, as found so far by the latest search
-
m_search_smallestZ
double m_search_smallestZ
The smallest Z value found so far by the latest search
-
m_search_bestPathPosInstances
Instances m_search_bestPathPosInstances
The positive instances that apply to the best path found so far
-
m_search_bestPathNegInstances
Instances m_search_bestPathNegInstances
The negative instances that apply to the best path found so far
-
m_nodesExpanded
int m_nodesExpanded
Statistics - the number of prediction nodes investigated during search
-
m_examplesCounted
int m_examplesCounted
Statistics - the number of instances processed during search
-
m_boostingIterations
int m_boostingIterations
Option - the number of boosting iterations o perform
-
m_searchPath
int m_searchPath
Option - the search mode
-
m_randomSeed
int m_randomSeed
Option - the seed to use for a random search
-
m_saveInstanceData
boolean m_saveInstanceData
Option - whether the tree should remember the instance data