Package org.mlflow.api.proto
Interface Service.DatasetSummaryOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.DatasetSummary
,Service.DatasetSummary.Builder
- Enclosing class:
Service
public static interface Service.DatasetSummaryOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionValue of "context" tag if set for the given dataset.com.google.protobuf.ByteString
Value of "context" tag if set for the given dataset.Dataset digest, e.g.com.google.protobuf.ByteString
Dataset digest, e.g.Unique identifier for the experiment.com.google.protobuf.ByteString
Unique identifier for the experiment.getName()
The name of the dataset.com.google.protobuf.ByteString
The name of the dataset.boolean
Value of "context" tag if set for the given dataset.boolean
Dataset digest, e.g.boolean
Unique identifier for the experiment.boolean
hasName()
The name of the dataset.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
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 [(.mlflow.validate_required) = true];
- Returns:
- Whether the experimentId field is set.
-
getExperimentId
String getExperimentId()Unique identifier for the experiment.
optional string experiment_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The experimentId.
-
getExperimentIdBytes
com.google.protobuf.ByteString getExperimentIdBytes()Unique identifier for the experiment.
optional string experiment_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for experimentId.
-
hasName
boolean hasName()The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3”
optional string name = 2 [(.mlflow.validate_required) = true];
- Returns:
- Whether the name field is set.
-
getName
String getName()The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3”
optional string name = 2 [(.mlflow.validate_required) = true];
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3”
optional string name = 2 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for name.
-
hasDigest
boolean hasDigest()Dataset digest, e.g. an md5 hash of the dataset that uniquely identifies it within datasets of the same name.
optional string digest = 3 [(.mlflow.validate_required) = true];
- Returns:
- Whether the digest field is set.
-
getDigest
String getDigest()Dataset digest, e.g. an md5 hash of the dataset that uniquely identifies it within datasets of the same name.
optional string digest = 3 [(.mlflow.validate_required) = true];
- Returns:
- The digest.
-
getDigestBytes
com.google.protobuf.ByteString getDigestBytes()Dataset digest, e.g. an md5 hash of the dataset that uniquely identifies it within datasets of the same name.
optional string digest = 3 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for digest.
-
hasContext
boolean hasContext()Value of "context" tag if set for the given dataset.
optional string context = 4;
- Returns:
- Whether the context field is set.
-
getContext
String getContext()Value of "context" tag if set for the given dataset.
optional string context = 4;
- Returns:
- The context.
-
getContextBytes
com.google.protobuf.ByteString getContextBytes()Value of "context" tag if set for the given dataset.
optional string context = 4;
- Returns:
- The bytes for context.
-