Class: Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutputHyperparameterMetric

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/ml_v1/classes.rb,
generated/google/apis/ml_v1/representations.rb,
generated/google/apis/ml_v1/representations.rb

Overview

An observed value of a metric.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudMlV1HyperparameterOutputHyperparameterMetric

Returns a new instance of GoogleCloudMlV1HyperparameterOutputHyperparameterMetric.



135
136
137
# File 'generated/google/apis/ml_v1/classes.rb', line 135

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#objective_valueFloat

The objective value at this training step. Corresponds to the JSON property objectiveValue

Returns:

  • (Float)


128
129
130
# File 'generated/google/apis/ml_v1/classes.rb', line 128

def objective_value
  @objective_value
end

#training_stepFixnum

The global training step for this metric. Corresponds to the JSON property trainingStep

Returns:

  • (Fixnum)


133
134
135
# File 'generated/google/apis/ml_v1/classes.rb', line 133

def training_step
  @training_step
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



140
141
142
143
# File 'generated/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