Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelEvaluationSliceSliceSliceSpecRange
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelEvaluationSliceSliceSliceSpecRange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
A range of values for slice(s). low is inclusive, high is exclusive.
Instance Attribute Summary collapse
-
#high ⇒ Float
Exclusive high value for the range.
-
#low ⇒ Float
Inclusive low value for the range.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelEvaluationSliceSliceSliceSpecRange
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelEvaluationSliceSliceSliceSpecRange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelEvaluationSliceSliceSliceSpecRange
Returns a new instance of GoogleCloudAiplatformV1beta1ModelEvaluationSliceSliceSliceSpecRange.
13153 13154 13155 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13153 def initialize(**args) update!(**args) end |
Instance Attribute Details
#high ⇒ Float
Exclusive high value for the range.
Corresponds to the JSON property high
13146 13147 13148 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13146 def high @high end |
#low ⇒ Float
Inclusive low value for the range.
Corresponds to the JSON property low
13151 13152 13153 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13151 def low @low end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13158 13159 13160 13161 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13158 def update!(**args) @high = args[:high] if args.key?(:high) @low = args[:low] if args.key?(:low) end |