Interface IMultiLabelClassification
-
- All Superinterfaces:
IPrediction
public interface IMultiLabelClassification extends IPrediction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int[]getIrrelevantLabels(double threshold)double[]getPrediction()int[]getPrediction(double threshold)int[]getPrediction(double[] threshold)int[]getRelevantLabels(double threshold)int[]getThresholdedPrediction()-
Methods inherited from interface org.api4.java.ai.ml.core.evaluation.IPrediction
getClassConfidence, getClassDistribution, getLabelWithHighestProbability, getProbabilityOfLabel
-
-
-
-
Method Detail
-
getPrediction
double[] getPrediction()
- Specified by:
getPredictionin interfaceIPrediction
-
getThresholdedPrediction
int[] getThresholdedPrediction()
-
getPrediction
int[] getPrediction(double threshold)
-
getPrediction
int[] getPrediction(double[] threshold)
-
getRelevantLabels
int[] getRelevantLabels(double threshold)
-
getIrrelevantLabels
int[] getIrrelevantLabels(double threshold)
-
-