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 Summary
All 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.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getTagsList
java.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; 
- 
getTags
Service.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; 
- 
getTagsCount
int getTagsCount()
A list of tags for the dataset input, e.g. a “context” tag with value “training”
repeated .mlflow.InputTag tags = 1; 
- 
getTagsOrBuilderList
java.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; 
- 
getTagsOrBuilder
Service.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; 
- 
hasDataset
boolean 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.
 
 
- 
getDataset
Service.Dataset getDataset()
The dataset being used as a Run input.
optional .mlflow.Dataset dataset = 2 [(.mlflow.validate_required) = true];- Returns:
 - The dataset.
 
 
- 
getDatasetOrBuilder
Service.DatasetOrBuilder getDatasetOrBuilder()
The dataset being used as a Run input.
optional .mlflow.Dataset dataset = 2 [(.mlflow.validate_required) = true]; 
 - 
 
 -