Class: Google::Apis::MlV1beta1::GoogleCloudMlV1beta1HyperparameterOutput
- Inherits:
-
Object
- Object
- Google::Apis::MlV1beta1::GoogleCloudMlV1beta1HyperparameterOutput
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/ml_v1beta1/classes.rb,
generated/google/apis/ml_v1beta1/representations.rb,
generated/google/apis/ml_v1beta1/representations.rb
Overview
Represents the result of a single hyperparameter tuning trial from a training job. The TrainingOutput object that is returned on successful completion of a training job with hyperparameter tuning includes a list of HyperparameterOutput objects, one for each successful trial.
Instance Attribute Summary collapse
-
#all_metrics ⇒ Array<Google::Apis::MlV1beta1::GoogleCloudMlV1beta1HyperparameterOutputHyperparameterMetric>
All recorded object metrics for this trial.
-
#final_metric ⇒ Google::Apis::MlV1beta1::GoogleCloudMlV1beta1HyperparameterOutputHyperparameterMetric
An observed value of a metric.
-
#hyperparameters ⇒ Hash<String,String>
The hyperparameters given to this trial.
-
#trial_id ⇒ String
The trial id for these results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudMlV1beta1HyperparameterOutput
constructor
A new instance of GoogleCloudMlV1beta1HyperparameterOutput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudMlV1beta1HyperparameterOutput
Returns a new instance of GoogleCloudMlV1beta1HyperparameterOutput
431 432 433 |
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 431 def initialize(**args) update!(**args) end |
Instance Attribute Details
#all_metrics ⇒ Array<Google::Apis::MlV1beta1::GoogleCloudMlV1beta1HyperparameterOutputHyperparameterMetric>
All recorded object metrics for this trial.
Corresponds to the JSON property allMetrics
414 415 416 |
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 414 def all_metrics @all_metrics end |
#final_metric ⇒ Google::Apis::MlV1beta1::GoogleCloudMlV1beta1HyperparameterOutputHyperparameterMetric
An observed value of a metric.
Corresponds to the JSON property finalMetric
419 420 421 |
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 419 def final_metric @final_metric end |
#hyperparameters ⇒ Hash<String,String>
The hyperparameters given to this trial.
Corresponds to the JSON property hyperparameters
424 425 426 |
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 424 def hyperparameters @hyperparameters end |
#trial_id ⇒ String
The trial id for these results.
Corresponds to the JSON property trialId
429 430 431 |
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 429 def trial_id @trial_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
436 437 438 439 440 441 |
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 436 def update!(**args) @all_metrics = args[:all_metrics] if args.key?(:all_metrics) @final_metric = args[:final_metric] if args.key?(:final_metric) @hyperparameters = args[:hyperparameters] if args.key?(:hyperparameters) @trial_id = args[:trial_id] if args.key?(:trial_id) end |