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

Method train

JSAT/src/jsat/classifiers/trees/ERTrees.java:288–297  ·  view source on GitHub ↗
(RegressionDataSet dataSet, ExecutorService threadPool)

Source from the content-addressed store, hash-verified

286 }
287
288 @Override
289 public void train(RegressionDataSet dataSet, ExecutorService threadPool)
290 {
291 if(useDefaultSelectionCount)
292 baseTree.setSelectionCount(dataSet.getNumFeatures());
293 if(useDefaultStopSize)
294 baseTree.setStopSize(5);
295
296 doTraining(threadPool, dataSet);
297 }
298
299 @Override
300 public void train(RegressionDataSet dataSet)

Callers

nothing calls this directly

Calls 4

doTrainingMethod · 0.95
setSelectionCountMethod · 0.80
getNumFeaturesMethod · 0.80
setStopSizeMethod · 0.80

Tested by

no test coverage detected