Class: Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutput

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

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudMlV1HyperparameterOutput

Returns a new instance of GoogleCloudMlV1HyperparameterOutput



306
307
308
# File 'generated/google/apis/ml_v1/classes.rb', line 306

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

Instance Attribute Details

#all_metricsArray<Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutputHyperparameterMetric>

All recorded object metrics for this trial. This field is not currently populated. Corresponds to the JSON property allMetrics



283
284
285
# File 'generated/google/apis/ml_v1/classes.rb', line 283

def all_metrics
  @all_metrics
end

#final_metricGoogle::Apis::MlV1::GoogleCloudMlV1HyperparameterOutputHyperparameterMetric

An observed value of a metric. Corresponds to the JSON property finalMetric



288
289
290
# File 'generated/google/apis/ml_v1/classes.rb', line 288

def final_metric
  @final_metric
end

#hyperparametersHash<String,String>

The hyperparameters given to this trial. Corresponds to the JSON property hyperparameters

Returns:

  • (Hash<String,String>)


293
294
295
# File 'generated/google/apis/ml_v1/classes.rb', line 293

def hyperparameters
  @hyperparameters
end

#is_trial_stopped_earlyBoolean Also known as: is_trial_stopped_early?

True if the trial is stopped early. Corresponds to the JSON property isTrialStoppedEarly

Returns:

  • (Boolean)


298
299
300
# File 'generated/google/apis/ml_v1/classes.rb', line 298

def is_trial_stopped_early
  @is_trial_stopped_early
end

#trial_idString

The trial id for these results. Corresponds to the JSON property trialId

Returns:

  • (String)


304
305
306
# File 'generated/google/apis/ml_v1/classes.rb', line 304

def trial_id
  @trial_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



311
312
313
314
315
316
317
# File 'generated/google/apis/ml_v1/classes.rb', line 311

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)
  @is_trial_stopped_early = args[:is_trial_stopped_early] if args.key?(:is_trial_stopped_early)
  @trial_id = args[:trial_id] if args.key?(:trial_id)
end