Package com.datarobot.model
Class LearningSessionFeatures
- java.lang.Object
-
- com.datarobot.model.LearningSessionFeatures
-
- All Implemented Interfaces:
java.io.Serializable
public class LearningSessionFeatures extends java.lang.Object implements java.io.SerializableA reference to the features of 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 LearningSessionFeatures()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object other)internaljava.util.Map<java.lang.String,java.lang.Object>getAdditionalProperties()internaljava.lang.StringgetDatasetId()Get the unique identifier for theDatasettheseLearningSessionFeaturesare associated withjava.util.List<Feature>getFeatures()Retrieve a list ofFeatureobjects associated with thisLearningSessionjava.lang.StringgetId()Get the unique identifier for theLearningSessiontheseLearningSessionFeaturesare associated withjava.lang.StringgetTarget()Get the target for theLearningSessiontheseLearningSessionFeaturesare associated withinthashCode()internalvoidsetAdditionalProperty(java.lang.String name, java.lang.Object value)internaljava.lang.StringtoString()
-
-
-
Method Detail
-
getId
public java.lang.String getId()
Get the unique identifier for theLearningSessiontheseLearningSessionFeaturesare associated with- Returns:
- The ID of the learning session for these features
-
getTarget
public java.lang.String getTarget()
Get the target for theLearningSessiontheseLearningSessionFeaturesare associated with- Returns:
- The target of the learning session for these features
-
getDatasetId
public java.lang.String getDatasetId()
Get the unique identifier for theDatasettheseLearningSessionFeaturesare associated with- Returns:
- The ID of the dataset for these features
-
getFeatures
public java.util.List<Feature> getFeatures()
Retrieve a list ofFeatureobjects associated with thisLearningSession- Returns:
- A list of feature objects
-
getAdditionalProperties
public java.util.Map<java.lang.String,java.lang.Object> getAdditionalProperties()
internal
-
setAdditionalProperty
public void setAdditionalProperty(java.lang.String name, java.lang.Object value)internal
-
hashCode
public int hashCode()
internal- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
internal- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-