ai.libs.mlplan.multilabel.mekamlplan.ML2Plan4Meka Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mlplan-meka Show documentation
Show all versions of mlplan-meka Show documentation
This project provides an implementation of the AutoML tool ML-Plan for MEKA.
package ai.libs.mlplan.multilabel.mekamlplan;
import org.api4.java.ai.ml.core.dataset.supervised.ILabeledDataset;
import ai.libs.jaicore.ml.classification.multilabel.learner.IMekaClassifier;
import ai.libs.mlplan.core.MLPlan;
public class ML2Plan4Meka extends MLPlan {
public ML2Plan4Meka(final ML2PlanMekaBuilder builder, final ILabeledDataset> data) {
super(builder, data);
}
}