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.



28261
28262
28263
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28261

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)


28253
28254
28255
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28253

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


28259
28260
28261
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28259

def prior_study_names
  @prior_study_names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



28266
28267
28268
28269
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28266

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