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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetArtifactLocation()Location where all artifacts for the experiment are stored.com.google.protobuf.ByteStringgetArtifactLocationBytes()Location where all artifacts for the experiment are stored.java.lang.StringgetName()Experiment name.com.google.protobuf.ByteStringgetNameBytes()Experiment name.Service.ExperimentTaggetTags(int index)A collection of tags to set on the experiment.intgetTagsCount()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.ExperimentTagOrBuildergetTagsOrBuilder(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.booleanhasArtifactLocation()Location where all artifacts for the experiment are stored.booleanhasName()Experiment name.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
hasNameboolean hasName() Experiment name. optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- Whether the name field is set.
 
 - 
getNamejava.lang.String getName() Experiment name. optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- The name.
 
 - 
getNameBytescom.google.protobuf.ByteString getNameBytes() Experiment name. optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- The bytes for name.
 
 - 
hasArtifactLocationboolean 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.
 
 - 
getArtifactLocationjava.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.
 
 - 
getArtifactLocationBytescom.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.
 
 - 
getTagsListjava.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;
 - 
getTagsService.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;
 - 
getTagsCountint 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;
 - 
getTagsOrBuilderListjava.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;
 - 
getTagsOrBuilderService.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;
 
- 
 
-