Package com.datarobot.prediction
Interface ClassificationScoreEventInfo
-
- All Superinterfaces:
EventInfo<IPredictorInfo>
public interface ClassificationScoreEventInfo extends EventInfo<IPredictorInfo>
Interface for classification score event information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Duration
getDuration()
Time of the executing the score.Map<String,?>
getInput()
Getter for the inputs wuth wich the results were computed.Map<String,Double>
getOutput()
Getter for the classification scoring results.
-
-
-
Method Detail
-
getInput
Map<String,?> getInput()
Getter for the inputs wuth wich the results were computed.- Returns:
- inputs with which the score was computed.
-
getOutput
Map<String,Double> getOutput()
Getter for the classification scoring results.- Returns:
- classification scoring results.
-
getDuration
Duration getDuration()
Time of the executing the score.- Returns:
- duration.
-
-