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.



31884
31885
31886
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31884

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)


31876
31877
31878
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31876

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


31882
31883
31884
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31882

def prior_study_names
  @prior_study_names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



31889
31890
31891
31892
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31889

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