Class: Google::Apis::MlV1beta1::GoogleCloudMlV1beta1TrainingOutput

Inherits:
Object
  • Object
show all
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 results of a training job. Output only.

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) ⇒ GoogleCloudMlV1beta1TrainingOutput

Returns a new instance of GoogleCloudMlV1beta1TrainingOutput



1419
1420
1421
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 1419

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

Instance Attribute Details

#completed_trial_countFixnum

The number of hyperparameter tuning trials that completed successfully. Only set for hyperparameter tuning jobs. Corresponds to the JSON property completedTrialCount

Returns:

  • (Fixnum)


1400
1401
1402
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 1400

def completed_trial_count
  @completed_trial_count
end

#consumed_ml_unitsFloat

The amount of ML units consumed by the job. Corresponds to the JSON property consumedMLUnits

Returns:

  • (Float)


1405
1406
1407
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 1405

def consumed_ml_units
  @consumed_ml_units
end

#is_hyperparameter_tuning_jobBoolean Also known as: is_hyperparameter_tuning_job?

Whether this job is a hyperparameter tuning job. Corresponds to the JSON property isHyperparameterTuningJob

Returns:

  • (Boolean)


1410
1411
1412
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 1410

def is_hyperparameter_tuning_job
  @is_hyperparameter_tuning_job
end

#trialsArray<Google::Apis::MlV1beta1::GoogleCloudMlV1beta1HyperparameterOutput>

Results for individual Hyperparameter trials. Only set for hyperparameter tuning jobs. Corresponds to the JSON property trials



1417
1418
1419
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 1417

def trials
  @trials
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1424
1425
1426
1427
1428
1429
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 1424

def update!(**args)
  @completed_trial_count = args[:completed_trial_count] if args.key?(:completed_trial_count)
  @consumed_ml_units = args[:consumed_ml_units] if args.key?(:consumed_ml_units)
  @is_hyperparameter_tuning_job = args[:is_hyperparameter_tuning_job] if args.key?(:is_hyperparameter_tuning_job)
  @trials = args[:trials] if args.key?(:trials)
end