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.



56490
56491
56492
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 56490

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)


56482
56483
56484
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 56482

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)


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