Interface ICertaintyProvider<T,I,D extends IDataset<I>>
-
- Type Parameters:
T- TARGET: The type of the target that thisICertaintyProviderprovides certainty for.
- All Superinterfaces:
IPredictiveModel<T,I,D>
- All Known Implementing Classes:
PLNetDyadRanker
public interface ICertaintyProvider<T,I,D extends IDataset<I>> extends IPredictiveModel<T,I,D>
TheICertaintyProvidermodels anIPredictiveModelthat provides uncertainty information for queries in form ofIInstances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetCertainty(I queryInstance)Returns the certainty for a givenIInstance.-
Methods inherited from interface ai.libs.jaicore.ml.core.predictivemodel.IPredictiveModel
getConfiguration, predict, predict, setConfiguration
-
-
-
-
Method Detail
-
getCertainty
double getCertainty(I queryInstance)
Returns the certainty for a givenIInstance.- Parameters:
queryInstance-IInstancefor which certainty shall be obtained.- Returns:
- Certainty of the model for the given
IInstance
-
-