Package org.mlflow.api.proto
Interface Service.DatasetInputOrBuilder
- 
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder,- com.google.protobuf.MessageOrBuilder
 - All Known Implementing Classes:
- Service.DatasetInput,- Service.DatasetInput.Builder
 - Enclosing class:
- Service
 
 public static interface Service.DatasetInputOrBuilder extends com.google.protobuf.MessageOrBuilder
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Service.DatasetgetDataset()The dataset being used as a Run input.Service.DatasetOrBuildergetDatasetOrBuilder()The dataset being used as a Run input.Service.InputTaggetTags(int index)A list of tags for the dataset input, e.g.intgetTagsCount()A list of tags for the dataset input, e.g.java.util.List<Service.InputTag>getTagsList()A list of tags for the dataset input, e.g.Service.InputTagOrBuildergetTagsOrBuilder(int index)A list of tags for the dataset input, e.g.java.util.List<? extends Service.InputTagOrBuilder>getTagsOrBuilderList()A list of tags for the dataset input, e.g.booleanhasDataset()The dataset being used as a Run input.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
getTagsListjava.util.List<Service.InputTag> getTagsList() A list of tags for the dataset input, e.g. a “context” tag with value “training” repeated .mlflow.InputTag tags = 1;
 - 
getTagsService.InputTag getTags(int index) A list of tags for the dataset input, e.g. a “context” tag with value “training” repeated .mlflow.InputTag tags = 1;
 - 
getTagsCountint getTagsCount() A list of tags for the dataset input, e.g. a “context” tag with value “training” repeated .mlflow.InputTag tags = 1;
 - 
getTagsOrBuilderListjava.util.List<? extends Service.InputTagOrBuilder> getTagsOrBuilderList() A list of tags for the dataset input, e.g. a “context” tag with value “training” repeated .mlflow.InputTag tags = 1;
 - 
getTagsOrBuilderService.InputTagOrBuilder getTagsOrBuilder(int index) A list of tags for the dataset input, e.g. a “context” tag with value “training” repeated .mlflow.InputTag tags = 1;
 - 
hasDatasetboolean hasDataset() The dataset being used as a Run input. optional .mlflow.Dataset dataset = 2 [(.mlflow.validate_required) = true];- Returns:
- Whether the dataset field is set.
 
 - 
getDatasetService.Dataset getDataset() The dataset being used as a Run input. optional .mlflow.Dataset dataset = 2 [(.mlflow.validate_required) = true];- Returns:
- The dataset.
 
 - 
getDatasetOrBuilderService.DatasetOrBuilder getDatasetOrBuilder() The dataset being used as a Run input. optional .mlflow.Dataset dataset = 2 [(.mlflow.validate_required) = true];
 
- 
 
-