class Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutputHyperparameterMetric

An observed value of a metric.

Attributes

objective_value[RW]

The objective value at this training step. Corresponds to the JSON property `objectiveValue` @return [Float]

training_step[RW]

The global training step for this metric. Corresponds to the JSON property `trainingStep` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 135
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/ml_v1/classes.rb, line 140
def update!(**args)
  @objective_value = args[:objective_value] if args.key?(:objective_value)
  @training_step = args[:training_step] if args.key?(:training_step)
end