Package org.mlflow.api.proto
Interface Service.LogOutputsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.LogOutputs
,Service.LogOutputs.Builder
- Enclosing class:
- Service
public static interface Service.LogOutputsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Service.ModelOutput
getModels(int index)
Model outputs from the Run.int
getModelsCount()
Model outputs from the Run.java.util.List<Service.ModelOutput>
getModelsList()
Model outputs from the Run.Service.ModelOutputOrBuilder
getModelsOrBuilder(int index)
Model outputs from the Run.java.util.List<? extends Service.ModelOutputOrBuilder>
getModelsOrBuilderList()
Model outputs from the Run.java.lang.String
getRunId()
ID of the Run from which to log outputs.com.google.protobuf.ByteString
getRunIdBytes()
ID of the Run from which to log outputs.boolean
hasRunId()
ID of the Run from which to log outputs.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRunId
boolean hasRunId()
ID of the Run from which to log outputs.
optional string run_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- Whether the runId field is set.
-
getRunId
java.lang.String getRunId()
ID of the Run from which to log outputs.
optional string run_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The runId.
-
getRunIdBytes
com.google.protobuf.ByteString getRunIdBytes()
ID of the Run from which to log outputs.
optional string run_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for runId.
-
getModelsList
java.util.List<Service.ModelOutput> getModelsList()
Model outputs from the Run.
repeated .mlflow.ModelOutput models = 2;
-
getModels
Service.ModelOutput getModels(int index)
Model outputs from the Run.
repeated .mlflow.ModelOutput models = 2;
-
getModelsCount
int getModelsCount()
Model outputs from the Run.
repeated .mlflow.ModelOutput models = 2;
-
getModelsOrBuilderList
java.util.List<? extends Service.ModelOutputOrBuilder> getModelsOrBuilderList()
Model outputs from the Run.
repeated .mlflow.ModelOutput models = 2;
-
getModelsOrBuilder
Service.ModelOutputOrBuilder getModelsOrBuilder(int index)
Model outputs from the Run.
repeated .mlflow.ModelOutput models = 2;
-
-