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.



32898
32899
32900
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32898

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)


32890
32891
32892
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32890

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>)


32896
32897
32898
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32896

def prior_study_names
  @prior_study_names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



32903
32904
32905
32906
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32903

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