Package org.mlflow.api.proto
Interface Service.DatasetOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.Dataset,Service.Dataset.Builder
- Enclosing class:
- Service
public static interface Service.DatasetOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDigest()Dataset digest, e.g.com.google.protobuf.ByteStringgetDigestBytes()Dataset digest, e.g.java.lang.StringgetName()The name of the dataset.com.google.protobuf.ByteStringgetNameBytes()The name of the dataset.java.lang.StringgetProfile()The profile of the dataset.com.google.protobuf.ByteStringgetProfileBytes()The profile of the dataset.java.lang.StringgetSchema()The schema of the dataset.com.google.protobuf.ByteStringgetSchemaBytes()The schema of the dataset.java.lang.StringgetSource()The type of the dataset source, e.g.com.google.protobuf.ByteStringgetSourceBytes()The type of the dataset source, e.g.java.lang.StringgetSourceType()Source information for the dataset.com.google.protobuf.ByteStringgetSourceTypeBytes()Source information for the dataset.booleanhasDigest()Dataset digest, e.g.booleanhasName()The name of the dataset.booleanhasProfile()The profile of the dataset.booleanhasSchema()The schema of the dataset.booleanhasSource()The type of the dataset source, e.g.booleanhasSourceType()Source information for the dataset.-
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()
The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3”
optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3”
optional string name = 1 [(.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 = 1 [(.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 = 2 [(.mlflow.validate_required) = true];- Returns:
- Whether the digest field is set.
-
getDigest
java.lang.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 = 2 [(.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 = 2 [(.mlflow.validate_required) = true];- Returns:
- The bytes for digest.
-
hasSourceType
boolean hasSourceType()
Source information for the dataset. Note that the source may not exactly reproduce the dataset if it was transformed / modified before use with MLflow.
optional string source_type = 3 [(.mlflow.validate_required) = true];- Returns:
- Whether the sourceType field is set.
-
getSourceType
java.lang.String getSourceType()
Source information for the dataset. Note that the source may not exactly reproduce the dataset if it was transformed / modified before use with MLflow.
optional string source_type = 3 [(.mlflow.validate_required) = true];- Returns:
- The sourceType.
-
getSourceTypeBytes
com.google.protobuf.ByteString getSourceTypeBytes()
Source information for the dataset. Note that the source may not exactly reproduce the dataset if it was transformed / modified before use with MLflow.
optional string source_type = 3 [(.mlflow.validate_required) = true];- Returns:
- The bytes for sourceType.
-
hasSource
boolean hasSource()
The type of the dataset source, e.g. ‘databricks-uc-table’, ‘DBFS’, ‘S3’, ...
optional string source = 4 [(.mlflow.validate_required) = true];- Returns:
- Whether the source field is set.
-
getSource
java.lang.String getSource()
The type of the dataset source, e.g. ‘databricks-uc-table’, ‘DBFS’, ‘S3’, ...
optional string source = 4 [(.mlflow.validate_required) = true];- Returns:
- The source.
-
getSourceBytes
com.google.protobuf.ByteString getSourceBytes()
The type of the dataset source, e.g. ‘databricks-uc-table’, ‘DBFS’, ‘S3’, ...
optional string source = 4 [(.mlflow.validate_required) = true];- Returns:
- The bytes for source.
-
hasSchema
boolean hasSchema()
The schema of the dataset. E.g., MLflow ColSpec JSON for a dataframe, MLflow TensorSpec JSON for an ndarray, or another schema format.
optional string schema = 5;- Returns:
- Whether the schema field is set.
-
getSchema
java.lang.String getSchema()
The schema of the dataset. E.g., MLflow ColSpec JSON for a dataframe, MLflow TensorSpec JSON for an ndarray, or another schema format.
optional string schema = 5;- Returns:
- The schema.
-
getSchemaBytes
com.google.protobuf.ByteString getSchemaBytes()
The schema of the dataset. E.g., MLflow ColSpec JSON for a dataframe, MLflow TensorSpec JSON for an ndarray, or another schema format.
optional string schema = 5;- Returns:
- The bytes for schema.
-
hasProfile
boolean hasProfile()
The profile of the dataset. Summary statistics for the dataset, such as the number of rows in a table, the mean / std / mode of each column in a table, or the number of elements in an array.
optional string profile = 6;- Returns:
- Whether the profile field is set.
-
getProfile
java.lang.String getProfile()
The profile of the dataset. Summary statistics for the dataset, such as the number of rows in a table, the mean / std / mode of each column in a table, or the number of elements in an array.
optional string profile = 6;- Returns:
- The profile.
-
getProfileBytes
com.google.protobuf.ByteString getProfileBytes()
The profile of the dataset. Summary statistics for the dataset, such as the number of rows in a table, the mean / std / mode of each column in a table, or the number of elements in an array.
optional string profile = 6;- Returns:
- The bytes for profile.
-
-