Package com.google.cloud.aiplatform.v1
Interface MeasurementOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Measurement
,Measurement.Builder
public interface MeasurementOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Duration
getElapsedDuration()
Output only.com.google.protobuf.DurationOrBuilder
getElapsedDurationOrBuilder()
Output only.Measurement.Metric
getMetrics(int index)
Output only.int
getMetricsCount()
Output only.List<Measurement.Metric>
getMetricsList()
Output only.Measurement.MetricOrBuilder
getMetricsOrBuilder(int index)
Output only.List<? extends Measurement.MetricOrBuilder>
getMetricsOrBuilderList()
Output only.long
getStepCount()
Output only.boolean
hasElapsedDuration()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasElapsedDuration
boolean hasElapsedDuration()
Output only. Time that the Trial has been running at the point of this Measurement.
.google.protobuf.Duration elapsed_duration = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the elapsedDuration field is set.
-
getElapsedDuration
com.google.protobuf.Duration getElapsedDuration()
Output only. Time that the Trial has been running at the point of this Measurement.
.google.protobuf.Duration elapsed_duration = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The elapsedDuration.
-
getElapsedDurationOrBuilder
com.google.protobuf.DurationOrBuilder getElapsedDurationOrBuilder()
Output only. Time that the Trial has been running at the point of this Measurement.
.google.protobuf.Duration elapsed_duration = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getStepCount
long getStepCount()
Output only. The number of steps the machine learning model has been trained for. Must be non-negative.
int64 step_count = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The stepCount.
-
getMetricsList
List<Measurement.Metric> getMetricsList()
Output only. A list of metrics got by evaluating the objective functions using suggested Parameter values.
repeated .google.cloud.aiplatform.v1.Measurement.Metric metrics = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getMetrics
Measurement.Metric getMetrics(int index)
Output only. A list of metrics got by evaluating the objective functions using suggested Parameter values.
repeated .google.cloud.aiplatform.v1.Measurement.Metric metrics = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getMetricsCount
int getMetricsCount()
Output only. A list of metrics got by evaluating the objective functions using suggested Parameter values.
repeated .google.cloud.aiplatform.v1.Measurement.Metric metrics = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getMetricsOrBuilderList
List<? extends Measurement.MetricOrBuilder> getMetricsOrBuilderList()
Output only. A list of metrics got by evaluating the objective functions using suggested Parameter values.
repeated .google.cloud.aiplatform.v1.Measurement.Metric metrics = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getMetricsOrBuilder
Measurement.MetricOrBuilder getMetricsOrBuilder(int index)
Output only. A list of metrics got by evaluating the objective functions using suggested Parameter values.
repeated .google.cloud.aiplatform.v1.Measurement.Metric metrics = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
-