Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TuningJobMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TuningJobMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Tuning job metadata.
Instance Attribute Summary collapse
-
#completed_epoch_count ⇒ Fixnum
Output only.
-
#completed_step_count ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TuningJobMetadata
constructor
A new instance of GoogleCloudAiplatformV1beta1TuningJobMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TuningJobMetadata
Returns a new instance of GoogleCloudAiplatformV1beta1TuningJobMetadata.
61705 61706 61707 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 61705 def initialize(**args) update!(**args) end |
Instance Attribute Details
#completed_epoch_count ⇒ Fixnum
Output only. The number of epochs that have been completed.
Corresponds to the JSON property completedEpochCount
61697 61698 61699 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 61697 def completed_epoch_count @completed_epoch_count end |
#completed_step_count ⇒ Fixnum
Output only. The number of steps that have been completed. Set for Multi-Step
RL.
Corresponds to the JSON property completedStepCount
61703 61704 61705 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 61703 def completed_step_count @completed_step_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
61710 61711 61712 61713 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 61710 def update!(**args) @completed_epoch_count = args[:completed_epoch_count] if args.key?(:completed_epoch_count) @completed_step_count = args[:completed_step_count] if args.key?(:completed_step_count) end |