org.api4.java.ai.ml.ranking.IRankingPredictionAndGroundTruthTable 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.ranking;
import java.util.List;
import org.api4.java.ai.ml.core.evaluation.IPredictionAndGroundTruthTable;
public interface IRankingPredictionAndGroundTruthTable extends IPredictionAndGroundTruthTable, IRanking>> {
@Override
public IRanking> getPrediction(int instance);
@Override
public IRanking> getGroundTruth(int instance);
@Override
public List> getPredictionsAsList();
@Override
public IRanking>[] getPredictionsAsArray();
@Override
public List> getGroundTruthAsList();
@Override
public IRanking>[] getGroundTruthAsArray();
}