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.
56490 56491 56492 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 56490 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
56482 56483 56484 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 56482 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
56488 56489 56490 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 56488 def completed_step_count @completed_step_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
56495 56496 56497 56498 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 56495 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 |