(ClassificationDataSet dataSet, ExecutorService threadPool)
| 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) }, |