(RegressionDataSet dataSet, ExecutorService threadPool)
| 61 | } |
| 62 | |
| 63 | @Override |
| 64 | public void train(RegressionDataSet dataSet, ExecutorService threadPool) |
| 65 | { |
| 66 | Set<Integer> options = new IntSet(dataSet.getNumFeatures()); |
| 67 | for(int i = 0; i < dataSet.getNumFeatures(); i++) |
| 68 | options.add(i); |
| 69 | train(dataSet, options, threadPool); |
| 70 | } |
| 71 | |
| 72 | public void train(RegressionDataSet dataSet, Set<Integer> options) |
| 73 | { |