MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / trainC

Method trainC

JSAT/src/jsat/classifiers/trees/DecisionTree.java:306–313  ·  view source on GitHub ↗
(ClassificationDataSet dataSet, ExecutorService threadPool)

Source from the content-addressed store, hash-verified

304 }
305
306 @Override
307 public void trainC(ClassificationDataSet dataSet, ExecutorService threadPool)
308 {
309 Set<Integer> options = new IntSet(dataSet.getNumFeatures());
310 for(int i = 0; i < dataSet.getNumFeatures(); i++)
311 options.add(i);
312 trainC(dataSet, options, threadPool);
313 }
314 /**
315 * Performs exactly the same as
316 * {@link #trainC(jsat.classifiers.ClassificationDataSet, java.util.concurrent.ExecutorService) },

Callers 5

testCloneMethod · 0.95

Calls 15

addMethod · 0.95
makeNodeCMethod · 0.95
awaitMethod · 0.95
trainCMethod · 0.95
getNumFeaturesMethod · 0.80
getPredictingMethod · 0.80
logMethod · 0.80
pruneMethod · 0.80
sizeMethod · 0.65
getNameMethod · 0.65
getSampleSizeMethod · 0.45
getAsDPPListMethod · 0.45

Tested by 5

testCloneMethod · 0.76