class Google::Apis::MlV1::GoogleCloudMlV1CheckTrialEarlyStoppingStateResponse
The message will be placed in the response field of a completed google. longrunning.Operation associated with a CheckTrialEarlyStoppingState request.
Attributes
end_time[RW]
The time at which operation processing completed. Corresponds to the JSON property `endTime` @return [String]
should_stop[RW]
True if the Trial should stop. Corresponds to the JSON property `shouldStop` @return [Boolean]
should_stop?[RW]
True if the Trial should stop. Corresponds to the JSON property `shouldStop` @return [Boolean]
start_time[RW]
The time at which the operation was started. Corresponds to the JSON property `startTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 740 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/ml_v1/classes.rb, line 745 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @should_stop = args[:should_stop] if args.key?(:should_stop) @start_time = args[:start_time] if args.key?(:start_time) end