Class NasTrial (1.32.0)

  NasTrial 
 ( 
 mapping 
 = 
 None 
 , 
 * 
 , 
 ignore_unknown_fields 
 = 
 False 
 , 
 ** 
 kwargs 
 ) 
 

Represents a uCAIP NasJob trial.

Attributes

Name
Description
id
str
Output only. The identifier of the NasTrial assigned by the service.
state
google.cloud.aiplatform_v1.types.NasTrial.State
Output only. The detailed state of the NasTrial.
final_measurement
google.cloud.aiplatform_v1.types.Measurement
Output only. The final measurement containing the objective value.
start_time
google.protobuf.timestamp_pb2.Timestamp
Output only. Time when the NasTrial was started.
end_time
google.protobuf.timestamp_pb2.Timestamp
Output only. Time when the NasTrial's status changed to SUCCEEDED or INFEASIBLE .

Classes

State

  State 
 ( 
 value 
 ) 
 

Describes a NasTrial state.

Values: STATE_UNSPECIFIED (0): The NasTrial state is unspecified. REQUESTED (1): Indicates that a specific NasTrial has been requested, but it has not yet been suggested by the service. ACTIVE (2): Indicates that the NasTrial has been suggested. STOPPING (3): Indicates that the NasTrial should stop according to the service. SUCCEEDED (4): Indicates that the NasTrial is completed successfully. INFEASIBLE (5): Indicates that the NasTrial should not be attempted again. The service will set a NasTrial to INFEASIBLE when it's done but missing the final_measurement.