()
| 67 | { |
| 68 | |
| 69 | public LogitBoost call() throws Exception |
| 70 | { |
| 71 | LogitBoost boost = new LogitBoost(baseLearner.clone(), getMaxIterations()); |
| 72 | |
| 73 | boost.trainC(subSet); |
| 74 | |
| 75 | return boost; |
| 76 | } |
| 77 | })); |
| 78 | } |
| 79 |
nothing calls this directly
no test coverage detected