Package org.mlflow.api.proto
Interface Service.CreateExperimentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.CreateExperiment
,Service.CreateExperiment.Builder
- Enclosing class:
- Service
public static interface Service.CreateExperimentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getArtifactLocation()
Location where all artifacts for the experiment are stored.com.google.protobuf.ByteString
getArtifactLocationBytes()
Location where all artifacts for the experiment are stored.java.lang.String
getName()
Experiment name.com.google.protobuf.ByteString
getNameBytes()
Experiment name.Service.ExperimentTag
getTags(int index)
A collection of tags to set on the experiment.int
getTagsCount()
A collection of tags to set on the experiment.java.util.List<Service.ExperimentTag>
getTagsList()
A collection of tags to set on the experiment.Service.ExperimentTagOrBuilder
getTagsOrBuilder(int index)
A collection of tags to set on the experiment.java.util.List<? extends Service.ExperimentTagOrBuilder>
getTagsOrBuilderList()
A collection of tags to set on the experiment.boolean
hasArtifactLocation()
Location where all artifacts for the experiment are stored.boolean
hasName()
Experiment name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
Experiment name.
optional string name = 1 [(.mlflow.validate_required) = true];
- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
Experiment name.
optional string name = 1 [(.mlflow.validate_required) = true];
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Experiment name.
optional string name = 1 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for name.
-
hasArtifactLocation
boolean hasArtifactLocation()
Location where all artifacts for the experiment are stored. If not provided, the remote server will select an appropriate default.
optional string artifact_location = 2;
- Returns:
- Whether the artifactLocation field is set.
-
getArtifactLocation
java.lang.String getArtifactLocation()
Location where all artifacts for the experiment are stored. If not provided, the remote server will select an appropriate default.
optional string artifact_location = 2;
- Returns:
- The artifactLocation.
-
getArtifactLocationBytes
com.google.protobuf.ByteString getArtifactLocationBytes()
Location where all artifacts for the experiment are stored. If not provided, the remote server will select an appropriate default.
optional string artifact_location = 2;
- Returns:
- The bytes for artifactLocation.
-
getTagsList
java.util.List<Service.ExperimentTag> getTagsList()
A collection of tags to set on the experiment. Maximum tag size and number of tags per request depends on the storage backend. All storage backends are guaranteed to support tag keys up to 250 bytes in size and tag values up to 5000 bytes in size. All storage backends are also guaranteed to support up to 20 tags per request.
repeated .mlflow.ExperimentTag tags = 3;
-
getTags
Service.ExperimentTag getTags(int index)
A collection of tags to set on the experiment. Maximum tag size and number of tags per request depends on the storage backend. All storage backends are guaranteed to support tag keys up to 250 bytes in size and tag values up to 5000 bytes in size. All storage backends are also guaranteed to support up to 20 tags per request.
repeated .mlflow.ExperimentTag tags = 3;
-
getTagsCount
int getTagsCount()
A collection of tags to set on the experiment. Maximum tag size and number of tags per request depends on the storage backend. All storage backends are guaranteed to support tag keys up to 250 bytes in size and tag values up to 5000 bytes in size. All storage backends are also guaranteed to support up to 20 tags per request.
repeated .mlflow.ExperimentTag tags = 3;
-
getTagsOrBuilderList
java.util.List<? extends Service.ExperimentTagOrBuilder> getTagsOrBuilderList()
A collection of tags to set on the experiment. Maximum tag size and number of tags per request depends on the storage backend. All storage backends are guaranteed to support tag keys up to 250 bytes in size and tag values up to 5000 bytes in size. All storage backends are also guaranteed to support up to 20 tags per request.
repeated .mlflow.ExperimentTag tags = 3;
-
getTagsOrBuilder
Service.ExperimentTagOrBuilder getTagsOrBuilder(int index)
A collection of tags to set on the experiment. Maximum tag size and number of tags per request depends on the storage backend. All storage backends are guaranteed to support tag keys up to 250 bytes in size and tag values up to 5000 bytes in size. All storage backends are also guaranteed to support up to 20 tags per request.
repeated .mlflow.ExperimentTag tags = 3;
-
-