Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecMetricSpec
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecMetricSpec
- 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
Represents a metric to optimize.
Instance Attribute Summary collapse
-
#goal ⇒ String
Required.
-
#metric_id ⇒ String
Required.
-
#safety_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecMetricSpecSafetyMetricConfig
Used in safe optimization to specify threshold levels and risk tolerance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1StudySpecMetricSpec
constructor
A new instance of GoogleCloudAiplatformV1beta1StudySpecMetricSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1StudySpecMetricSpec
Returns a new instance of GoogleCloudAiplatformV1beta1StudySpecMetricSpec.
32490 32491 32492 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32490 def initialize(**args) update!(**args) end |
Instance Attribute Details
#goal ⇒ String
Required. The optimization goal of the metric.
Corresponds to the JSON property goal
32477 32478 32479 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32477 def goal @goal end |
#metric_id ⇒ String
Required. The ID of the metric. Must not contain whitespaces and must be
unique amongst all MetricSpecs.
Corresponds to the JSON property metricId
32483 32484 32485 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32483 def metric_id @metric_id end |
#safety_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecMetricSpecSafetyMetricConfig
Used in safe optimization to specify threshold levels and risk tolerance.
Corresponds to the JSON property safetyConfig
32488 32489 32490 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32488 def safety_config @safety_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
32495 32496 32497 32498 32499 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32495 def update!(**args) @goal = args[:goal] if args.key?(:goal) @metric_id = args[:metric_id] if args.key?(:metric_id) @safety_config = args[:safety_config] if args.key?(:safety_config) end |