Package com.datarobot.model
Class Evaluation
- java.lang.Object
-
- com.datarobot.model.Evaluation
-
- All Implemented Interfaces:
INeedClient,java.io.Serializable
public class Evaluation extends java.lang.Object implements java.io.Serializable, INeedClient
A reference to anEvaluationfor aLearningSessionon the DataRobot server. Client code that uses the DataRobot AI API package generally should not construct these objects directly, they should be instantiated by AI API Client methods. This object may be out of sync with the DataRobot sever, for example, if multiple processes or users have permission to modify or delete it on the server.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Evaluation()Evaluation(java.lang.String summary, java.lang.Double score, java.lang.String label)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetLabel()doublegetScore()java.lang.StringgetSummary()voidsetClient(IDataRobotAIClient client)java.lang.StringtoString()
-
-
-
Method Detail
-
setClient
public void setClient(IDataRobotAIClient client)
- Specified by:
setClientin interfaceINeedClient
-
getSummary
public java.lang.String getSummary()
-
getScore
public double getScore()
-
getLabel
public java.lang.String getLabel()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-