Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NasTrial

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1NasTrial

Returns a new instance of GoogleCloudAiplatformV1NasTrial.



25292
25293
25294
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25292

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#end_timeString

Output only. Time when the NasTrial's status changed to SUCCEEDED or INFEASIBLE. Corresponds to the JSON property endTime

Returns:

  • (String)


25269
25270
25271
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25269

def end_time
  @end_time
end

#final_measurementGoogle::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



25275
25276
25277
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25275

def final_measurement
  @final_measurement
end

#idString

Output only. The identifier of the NasTrial assigned by the service. Corresponds to the JSON property id

Returns:

  • (String)


25280
25281
25282
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25280

def id
  @id
end

#start_timeString

Output only. Time when the NasTrial was started. Corresponds to the JSON property startTime

Returns:

  • (String)


25285
25286
25287
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25285

def start_time
  @start_time
end

#stateString

Output only. The detailed state of the NasTrial. Corresponds to the JSON property state

Returns:

  • (String)


25290
25291
25292
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25290

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



25297
25298
25299
25300
25301
25302
25303
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25297

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