Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TuningJobMetadata

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TuningJobMetadata

Returns a new instance of GoogleCloudAiplatformV1beta1TuningJobMetadata.



63206
63207
63208
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 63206

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

Instance Attribute Details

#completed_epoch_countFixnum

Output only. The number of epochs that have been completed. Corresponds to the JSON property completedEpochCount

Returns:

  • (Fixnum)


63198
63199
63200
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 63198

def completed_epoch_count
  @completed_epoch_count
end

#completed_step_countFixnum

Output only. The number of steps that have been completed. Set for Multi-Step RL. Corresponds to the JSON property completedStepCount

Returns:

  • (Fixnum)


63204
63205
63206
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 63204

def completed_step_count
  @completed_step_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



63211
63212
63213
63214
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 63211

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