Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NasTrial
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NasTrial
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Represents a uCAIP NasJob trial.
Instance Attribute Summary collapse
-
#end_time ⇒ String
Output only.
-
#final_measurement ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Measurement
A message representing a Measurement of a Trial.
-
#id ⇒ String
Output only.
-
#start_time ⇒ String
Output only.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1NasTrial
constructor
A new instance of GoogleCloudAiplatformV1NasTrial.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1NasTrial
Returns a new instance of GoogleCloudAiplatformV1NasTrial.
16708 16709 16710 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16708 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Output only. Time when the NasTrial's status changed to SUCCEEDED or
INFEASIBLE.
Corresponds to the JSON property endTime
16685 16686 16687 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16685 def end_time @end_time end |
#final_measurement ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Measurement
A message representing a Measurement of a Trial. A Measurement contains the
Metrics got by executing a Trial using suggested hyperparameter values.
Corresponds to the JSON property finalMeasurement
16691 16692 16693 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16691 def final_measurement @final_measurement end |
#id ⇒ String
Output only. The identifier of the NasTrial assigned by the service.
Corresponds to the JSON property id
16696 16697 16698 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16696 def id @id end |
#start_time ⇒ String
Output only. Time when the NasTrial was started.
Corresponds to the JSON property startTime
16701 16702 16703 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16701 def start_time @start_time end |
#state ⇒ String
Output only. The detailed state of the NasTrial.
Corresponds to the JSON property state
16706 16707 16708 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16706 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16713 16714 16715 16716 16717 16718 16719 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16713 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @final_measurement = args[:final_measurement] if args.key?(:final_measurement) @id = args[:id] if args.key?(:id) @start_time = args[:start_time] if args.key?(:start_time) @state = args[:state] if args.key?(:state) end |