Package org.mlflow.api.proto
Interface Service.MetricAggregationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.MetricAggregation,Service.MetricAggregation.Builder
- Enclosing class:
- Service
public static interface Service.MetricAggregationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Service.AggregationTypegetAggregationType()The type of aggregation to perform.doublegetPercentileValue()The percentile value to compute (0-100), required when aggregation_type is PERCENTILE.booleanhasAggregationType()The type of aggregation to perform.booleanhasPercentileValue()The percentile value to compute (0-100), required when aggregation_type is PERCENTILE.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasAggregationType
boolean hasAggregationType()
The type of aggregation to perform.
optional .mlflow.AggregationType aggregation_type = 1;- Returns:
- Whether the aggregationType field is set.
-
getAggregationType
Service.AggregationType getAggregationType()
The type of aggregation to perform.
optional .mlflow.AggregationType aggregation_type = 1;- Returns:
- The aggregationType.
-
hasPercentileValue
boolean hasPercentileValue()
The percentile value to compute (0-100), required when aggregation_type is PERCENTILE. Examples: 50 (median), 75, 90, 95, 99. This field is ignored for other aggregation types.
optional double percentile_value = 2;- Returns:
- Whether the percentileValue field is set.
-
getPercentileValue
double getPercentileValue()
The percentile value to compute (0-100), required when aggregation_type is PERCENTILE. Examples: 50 (median), 75, 90, 95, 99. This field is ignored for other aggregation types.
optional double percentile_value = 2;- Returns:
- The percentileValue.
-
-