Interface IDeterministicPredictionPerformanceMeasure<E,A>
-
- All Known Subinterfaces:
IDeterministicHomogeneousPredictionPerformanceMeasure<O>,IMultiLabelClassificationPredictionPerformanceMeasure,IRankingPredictionPerformanceMeasure
public interface IDeterministicPredictionPerformanceMeasure<E,A>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doubleloss(java.util.List<? extends E> expected, java.util.List<? extends A> actual)doubleloss(IPredictionAndGroundTruthTable<? extends E,? extends A> pairTable)doublescore(java.util.List<? extends E> expected, java.util.List<? extends A> actual)doublescore(IPredictionAndGroundTruthTable<? extends E,? extends A> pairTable)
-
-
-
Method Detail
-
loss
double loss(IPredictionAndGroundTruthTable<? extends E,? extends A> pairTable)
-
score
double score(IPredictionAndGroundTruthTable<? extends E,? extends A> pairTable)
-
-