org.api4.java.ai.ml.classification.IClassifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ai-ml Show documentation
Show all versions of ai-ml Show documentation
Fundamental utils required by many other starlibs projects.
The newest version!
package org.api4.java.ai.ml.classification;
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;
/**
*
* @author mwever
*
* @param
* @param
*/
public interface IClassifier extends ISupervisedLearner> {
}