Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig

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

This contains flag for manually disabling transfer learning for a study. The names of prior studies being used for transfer learning (if any) are also listed here.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig

Returns a new instance of GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig.



24426
24427
24428
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24426

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

Instance Attribute Details

#disable_transfer_learningBoolean Also known as: disable_transfer_learning?

Flag to to manually prevent vizier from using transfer learning on a new study. Otherwise, vizier will automatically determine whether or not to use transfer learning. Corresponds to the JSON property disableTransferLearning

Returns:

  • (Boolean)


24418
24419
24420
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24418

def disable_transfer_learning
  @disable_transfer_learning
end

#prior_study_namesArray<String>

Output only. Names of previously completed studies Corresponds to the JSON property priorStudyNames

Returns:

  • (Array<String>)


24424
24425
24426
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24424

def prior_study_names
  @prior_study_names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



24431
24432
24433
24434
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24431

def update!(**args)
  @disable_transfer_learning = args[:disable_transfer_learning] if args.key?(:disable_transfer_learning)
  @prior_study_names = args[:prior_study_names] if args.key?(:prior_study_names)
end