ai.libs.mlplan.core.ITimeTrackingLearner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mlplan-core Show documentation
Show all versions of mlplan-core Show documentation
This project provides an implementation of the AutoML tool ML-Plan.
The newest version!
package ai.libs.mlplan.core;
import java.util.List;
import org.api4.java.ai.ml.core.dataset.supervised.ILabeledDataset;
import org.api4.java.ai.ml.core.dataset.supervised.ILabeledInstance;
import org.api4.java.ai.ml.core.learner.ISupervisedLearner;
import ai.libs.jaicore.components.api.IComponentInstance;
public interface ITimeTrackingLearner extends ISupervisedLearner> {
public ISupervisedLearner> getLearner();
public List getFitTimes();
public List getBatchPredictionTimesInMS();
public List getInstancePredictionTimesInMS();
public IComponentInstance getComponentInstance();
public void setPredictedInductionTime(final String inductionTime);
public void setPredictedInferenceTime(final String inferenceTime);
public Double getPredictedInductionTime();
public Double getPredictedInferenceTime();
public void setScore(Double score);
public Double getScore();
}