Esempio n. 1
0
 public RandomTree(int maxDepth)
 {
     decisionTreeRoot = new DecisionTree(maxDepth, new RandomStumpInfoGain());
 }