Interface ISupervisedLearnerExecutor
-
- All Known Subinterfaces:
ISingleLabelClassifierExecutor
public interface ISupervisedLearnerExecutor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <I extends ILabeledInstance,D extends ILabeledDataset<? extends I>>
ILearnerRunReportexecute(ISupervisedLearner<I,D> learner, D test)Here, the classifier is assumed to be trained already<I extends ILabeledInstance,D extends ILabeledDataset<? extends I>>
ILearnerRunReportexecute(ISupervisedLearner<I,D> learner, D train, D test)
-
-
-
Method Detail
-
execute
<I extends ILabeledInstance,D extends ILabeledDataset<? extends I>> ILearnerRunReport execute(ISupervisedLearner<I,D> learner, D train, D test) throws LearnerExecutionFailedException, LearnerExecutionInterruptedException
-
execute
<I extends ILabeledInstance,D extends ILabeledDataset<? extends I>> ILearnerRunReport execute(ISupervisedLearner<I,D> learner, D test) throws LearnerExecutionFailedException, LearnerExecutionInterruptedException
Here, the classifier is assumed to be trained already
-
-