Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NasJobSpec
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NasJobSpec
- 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
Represents the spec of a NasJob.
Instance Attribute Summary collapse
-
#multi_trial_algorithm_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpec
The spec of multi-trial Neural Architecture Search (NAS).
-
#resume_nas_job_id ⇒ String
The ID of the existing NasJob in the same Project and Location which will be used to resume search.
-
#search_space_spec ⇒ String
It defines the search space for Neural Architecture Search (NAS).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1NasJobSpec
constructor
A new instance of GoogleCloudAiplatformV1beta1NasJobSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1NasJobSpec
Returns a new instance of GoogleCloudAiplatformV1beta1NasJobSpec.
14037 14038 14039 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14037 def initialize(**args) update!(**args) end |
Instance Attribute Details
#multi_trial_algorithm_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpec
The spec of multi-trial Neural Architecture Search (NAS).
Corresponds to the JSON property multiTrialAlgorithmSpec
14023 14024 14025 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14023 def multi_trial_algorithm_spec @multi_trial_algorithm_spec end |
#resume_nas_job_id ⇒ String
The ID of the existing NasJob in the same Project and Location which will be
used to resume search. search_space_spec and nas_algorithm_spec are obtained
from previous NasJob hence should not provide them again for this NasJob.
Corresponds to the JSON property resumeNasJobId
14030 14031 14032 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14030 def resume_nas_job_id @resume_nas_job_id end |
#search_space_spec ⇒ String
It defines the search space for Neural Architecture Search (NAS).
Corresponds to the JSON property searchSpaceSpec
14035 14036 14037 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14035 def search_space_spec @search_space_spec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14042 14043 14044 14045 14046 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14042 def update!(**args) @multi_trial_algorithm_spec = args[:multi_trial_algorithm_spec] if args.key?(:multi_trial_algorithm_spec) @resume_nas_job_id = args[:resume_nas_job_id] if args.key?(:resume_nas_job_id) @search_space_spec = args[:search_space_spec] if args.key?(:search_space_spec) end |