class Google::Apis::MlV1::GoogleCloudMlV1StudyConfigParameterSpecDoubleValueSpec
Attributes
max_value[RW]
Must be specified if type is `DOUBLE`. Maximum value of the parameter. Corresponds to the JSON property `maxValue` @return [Float]
min_value[RW]
Must be specified if type is `DOUBLE`. Minimum value of the parameter. Corresponds to the JSON property `minValue` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 226 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 231 def update!(**args) @max_value = args[:max_value] if args.key?(:max_value) @min_value = args[:min_value] if args.key?(:min_value) end