Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelEvaluationSliceSliceSliceSpecRange

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelEvaluationSliceSliceSliceSpecRange

Returns a new instance of GoogleCloudAiplatformV1beta1ModelEvaluationSliceSliceSliceSpecRange.



16297
16298
16299
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16297

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

Instance Attribute Details

#highFloat

Exclusive high value for the range. Corresponds to the JSON property high

Returns:

  • (Float)


16290
16291
16292
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16290

def high
  @high
end

#lowFloat

Inclusive low value for the range. Corresponds to the JSON property low

Returns:

  • (Float)


16295
16296
16297
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16295

def low
  @low
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16302
16303
16304
16305
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16302

def update!(**args)
  @high = args[:high] if args.key?(:high)
  @low = args[:low] if args.key?(:low)
end