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.
17955 17956 17957 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17955 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
17932 17933 17934 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17932 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
17938 17939 17940 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17938 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
17943 17944 17945 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17943 def id @id end |
#start_time ⇒ String
Output only. Time when the NasTrial was started.
Corresponds to the JSON property startTime
17948 17949 17950 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17948 def start_time @start_time end |
#state ⇒ String
Output only. The detailed state of the NasTrial.
Corresponds to the JSON property state
17953 17954 17955 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17953 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17960 17961 17962 17963 17964 17965 17966 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17960 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 |