Package org.mlflow.api.proto
Interface Service.GetMetricHistoryBulkIntervalOrBuilder
- 
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder,- com.google.protobuf.MessageOrBuilder
 - All Known Implementing Classes:
- Service.GetMetricHistoryBulkInterval,- Service.GetMetricHistoryBulkInterval.Builder
 - Enclosing class:
- Service
 
 public static interface Service.GetMetricHistoryBulkIntervalOrBuilder extends com.google.protobuf.MessageOrBuilder
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetEndStep()Optional end step to only fetch metrics before the specified step.intgetMaxResults()Maximum number of results to fetch per run specified.java.lang.StringgetMetricKey()Name of the metric.com.google.protobuf.ByteStringgetMetricKeyBytes()Name of the metric.java.lang.StringgetRunIds(int index)ID(s) of the run(s) from which to fetch metric values.com.google.protobuf.ByteStringgetRunIdsBytes(int index)ID(s) of the run(s) from which to fetch metric values.intgetRunIdsCount()ID(s) of the run(s) from which to fetch metric values.java.util.List<java.lang.String>getRunIdsList()ID(s) of the run(s) from which to fetch metric values.intgetStartStep()Optional start step to only fetch metrics after the specified step.booleanhasEndStep()Optional end step to only fetch metrics before the specified step.booleanhasMaxResults()Maximum number of results to fetch per run specified.booleanhasMetricKey()Name of the metric.booleanhasStartStep()Optional start step to only fetch metrics after the specified step.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
getRunIdsListjava.util.List<java.lang.String> getRunIdsList() ID(s) of the run(s) from which to fetch metric values. Must be provided. repeated string run_ids = 1;- Returns:
- A list containing the runIds.
 
 - 
getRunIdsCountint getRunIdsCount() ID(s) of the run(s) from which to fetch metric values. Must be provided. repeated string run_ids = 1;- Returns:
- The count of runIds.
 
 - 
getRunIdsjava.lang.String getRunIds(int index) ID(s) of the run(s) from which to fetch metric values. Must be provided. repeated string run_ids = 1;- Parameters:
- index- The index of the element to return.
- Returns:
- The runIds at the given index.
 
 - 
getRunIdsBytescom.google.protobuf.ByteString getRunIdsBytes(int index) ID(s) of the run(s) from which to fetch metric values. Must be provided. repeated string run_ids = 1;- Parameters:
- index- The index of the value to return.
- Returns:
- The bytes of the runIds at the given index.
 
 - 
hasMetricKeyboolean hasMetricKey() Name of the metric. optional string metric_key = 2 [(.mlflow.validate_required) = true];- Returns:
- Whether the metricKey field is set.
 
 - 
getMetricKeyjava.lang.String getMetricKey() Name of the metric. optional string metric_key = 2 [(.mlflow.validate_required) = true];- Returns:
- The metricKey.
 
 - 
getMetricKeyBytescom.google.protobuf.ByteString getMetricKeyBytes() Name of the metric. optional string metric_key = 2 [(.mlflow.validate_required) = true];- Returns:
- The bytes for metricKey.
 
 - 
hasStartStepboolean hasStartStep() Optional start step to only fetch metrics after the specified step. Must be defined if end_step is defined. optional int32 start_step = 3;- Returns:
- Whether the startStep field is set.
 
 - 
getStartStepint getStartStep() Optional start step to only fetch metrics after the specified step. Must be defined if end_step is defined. optional int32 start_step = 3;- Returns:
- The startStep.
 
 - 
hasEndStepboolean hasEndStep() Optional end step to only fetch metrics before the specified step. Must be defined if start_step is defined. optional int32 end_step = 4;- Returns:
- Whether the endStep field is set.
 
 - 
getEndStepint getEndStep() Optional end step to only fetch metrics before the specified step. Must be defined if start_step is defined. optional int32 end_step = 4;- Returns:
- The endStep.
 
 - 
hasMaxResultsboolean hasMaxResults() Maximum number of results to fetch per run specified. Must be set to a positive number. Note, in reality, the API returns at most (max_results + # of run IDs) x (# run IDs) metric data points. optional int32 max_results = 5;- Returns:
- Whether the maxResults field is set.
 
 - 
getMaxResultsint getMaxResults() Maximum number of results to fetch per run specified. Must be set to a positive number. Note, in reality, the API returns at most (max_results + # of run IDs) x (# run IDs) metric data points. optional int32 max_results = 5;- Returns:
- The maxResults.
 
 
- 
 
-