Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig
- 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
-
#disable_transfer_learning ⇒ Boolean
(also: #disable_transfer_learning?)
Flag to to manually prevent vizier from using transfer learning on a new study.
-
#prior_study_names ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig
constructor
A new instance of GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_learning ⇒ Boolean 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
32890 32891 32892 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32890 def disable_transfer_learning @disable_transfer_learning end |
#prior_study_names ⇒ Array<String>
Output only. Names of previously completed studies
Corresponds to the JSON property priorStudyNames
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 |