Package org.mlflow.api.proto
Interface Service.ExperimentOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.Experiment
,Service.Experiment.Builder
- Enclosing class:
- Service
public static interface Service.ExperimentOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description java.lang.String
getArtifactLocation()
Location where artifacts for the experiment are stored.com.google.protobuf.ByteString
getArtifactLocationBytes()
Location where artifacts for the experiment are stored.long
getCreationTime()
Creation timejava.lang.String
getExperimentId()
Unique identifier for the experiment.com.google.protobuf.ByteString
getExperimentIdBytes()
Unique identifier for the experiment.long
getLastUpdateTime()
Last update timejava.lang.String
getLifecycleStage()
Current life cycle stage of the experiment: "active" or "deleted".com.google.protobuf.ByteString
getLifecycleStageBytes()
Current life cycle stage of the experiment: "active" or "deleted".java.lang.String
getName()
Human readable name that identifies the experiment.com.google.protobuf.ByteString
getNameBytes()
Human readable name that identifies the experiment.Service.ExperimentTag
getTags(int index)
Tags: Additional metadata key-value pairs.int
getTagsCount()
Tags: Additional metadata key-value pairs.java.util.List<Service.ExperimentTag>
getTagsList()
Tags: Additional metadata key-value pairs.Service.ExperimentTagOrBuilder
getTagsOrBuilder(int index)
Tags: Additional metadata key-value pairs.java.util.List<? extends Service.ExperimentTagOrBuilder>
getTagsOrBuilderList()
Tags: Additional metadata key-value pairs.boolean
hasArtifactLocation()
Location where artifacts for the experiment are stored.boolean
hasCreationTime()
Creation timeboolean
hasExperimentId()
Unique identifier for the experiment.boolean
hasLastUpdateTime()
Last update timeboolean
hasLifecycleStage()
Current life cycle stage of the experiment: "active" or "deleted".boolean
hasName()
Human readable name that identifies the experiment.Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasExperimentId
boolean hasExperimentId()Unique identifier for the experiment.
optional string experiment_id = 1;
-
getExperimentId
java.lang.String getExperimentId()Unique identifier for the experiment.
optional string experiment_id = 1;
-
getExperimentIdBytes
com.google.protobuf.ByteString getExperimentIdBytes()Unique identifier for the experiment.
optional string experiment_id = 1;
-
hasName
boolean hasName()Human readable name that identifies the experiment.
optional string name = 2;
-
getName
java.lang.String getName()Human readable name that identifies the experiment.
optional string name = 2;
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()Human readable name that identifies the experiment.
optional string name = 2;
-
hasArtifactLocation
boolean hasArtifactLocation()Location where artifacts for the experiment are stored.
optional string artifact_location = 3;
-
getArtifactLocation
java.lang.String getArtifactLocation()Location where artifacts for the experiment are stored.
optional string artifact_location = 3;
-
getArtifactLocationBytes
com.google.protobuf.ByteString getArtifactLocationBytes()Location where artifacts for the experiment are stored.
optional string artifact_location = 3;
-
hasLifecycleStage
boolean hasLifecycleStage()Current life cycle stage of the experiment: "active" or "deleted". Deleted experiments are not returned by APIs.
optional string lifecycle_stage = 4;
-
getLifecycleStage
java.lang.String getLifecycleStage()Current life cycle stage of the experiment: "active" or "deleted". Deleted experiments are not returned by APIs.
optional string lifecycle_stage = 4;
-
getLifecycleStageBytes
com.google.protobuf.ByteString getLifecycleStageBytes()Current life cycle stage of the experiment: "active" or "deleted". Deleted experiments are not returned by APIs.
optional string lifecycle_stage = 4;
-
hasLastUpdateTime
boolean hasLastUpdateTime()Last update time
optional int64 last_update_time = 5;
-
getLastUpdateTime
long getLastUpdateTime()Last update time
optional int64 last_update_time = 5;
-
hasCreationTime
boolean hasCreationTime()Creation time
optional int64 creation_time = 6;
-
getCreationTime
long getCreationTime()Creation time
optional int64 creation_time = 6;
-
getTagsList
java.util.List<Service.ExperimentTag> getTagsList()Tags: Additional metadata key-value pairs.
repeated .mlflow.ExperimentTag tags = 7;
-
getTags
Tags: Additional metadata key-value pairs.
repeated .mlflow.ExperimentTag tags = 7;
-
getTagsCount
int getTagsCount()Tags: Additional metadata key-value pairs.
repeated .mlflow.ExperimentTag tags = 7;
-
getTagsOrBuilderList
java.util.List<? extends Service.ExperimentTagOrBuilder> getTagsOrBuilderList()Tags: Additional metadata key-value pairs.
repeated .mlflow.ExperimentTag tags = 7;
-
getTagsOrBuilder
Tags: Additional metadata key-value pairs.
repeated .mlflow.ExperimentTag tags = 7;
-