Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PointwiseMetricResult
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PointwiseMetricResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Spec for pointwise metric result.
Instance Attribute Summary collapse
-
#explanation ⇒ String
Output only.
-
#score ⇒ Float
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1PointwiseMetricResult
constructor
A new instance of GoogleCloudAiplatformV1PointwiseMetricResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1PointwiseMetricResult
Returns a new instance of GoogleCloudAiplatformV1PointwiseMetricResult.
19211 19212 19213 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19211 def initialize(**args) update!(**args) end |
Instance Attribute Details
#explanation ⇒ String
Output only. Explanation for pointwise metric score.
Corresponds to the JSON property explanation
19204 19205 19206 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19204 def explanation @explanation end |
#score ⇒ Float
Output only. Pointwise metric score.
Corresponds to the JSON property score
19209 19210 19211 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19209 def score @score end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19216 19217 19218 19219 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19216 def update!(**args) @explanation = args[:explanation] if args.key?(:explanation) @score = args[:score] if args.key?(:score) end |