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.



56660
56661
56662
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 56660

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)


56652
56653
56654
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 56652

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)


56658
56659
56660
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 56658

def completed_step_count
  @completed_step_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



56665
56666
56667
56668
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 56665

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