Skip to content

Commit

Permalink
another change to have a more performant default
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Mar 4, 2015
1 parent adc48ba commit 8c8c94f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class RandomForestBuilder<T extends ClassifierInstance> implements Predic
private ExecutorService executorService;

public RandomForestBuilder() {
this(new TreeBuilder<T>().ignoreAttributeAtNodeProbability(0.7).minCategoricalAttributeValueOccurances(11).maxDepth(16));
this(new TreeBuilder<T>().ignoreAttributeAtNodeProbability(0.7).minCategoricalAttributeValueOccurances(11).maxDepth(5));
}

public RandomForestBuilder(TreeBuilder<T> treeBuilder) {
Expand Down

0 comments on commit 8c8c94f

Please sign in to comment.