Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaModelevaluationMetricsTrackMetricsConfidenceMetrics
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaModelevaluationMetricsTrackMetricsConfidenceMetrics
- 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
Metrics for a single confidence threshold.
Instance Attribute Summary collapse
-
#bounding_box_iou ⇒ Float
Bounding box intersection-over-union precision.
-
#confidence_threshold ⇒ Float
The confidence threshold value used to compute the metrics.
-
#mismatch_rate ⇒ Float
Mismatch rate, which measures the tracking consistency, i.e.
-
#tracking_precision ⇒ Float
Tracking precision.
-
#tracking_recall ⇒ Float
Tracking recall.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SchemaModelevaluationMetricsTrackMetricsConfidenceMetrics
constructor
A new instance of GoogleCloudAiplatformV1beta1SchemaModelevaluationMetricsTrackMetricsConfidenceMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SchemaModelevaluationMetricsTrackMetricsConfidenceMetrics
Returns a new instance of GoogleCloudAiplatformV1beta1SchemaModelevaluationMetricsTrackMetricsConfidenceMetrics.
18189 18190 18191 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18189 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bounding_box_iou ⇒ Float
Bounding box intersection-over-union precision. Measures how well the bounding
boxes overlap between each other (e.g. complete overlap or just barely above
iou_threshold).
Corresponds to the JSON property boundingBoxIou
18166 18167 18168 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18166 def bounding_box_iou @bounding_box_iou end |
#confidence_threshold ⇒ Float
The confidence threshold value used to compute the metrics.
Corresponds to the JSON property confidenceThreshold
18171 18172 18173 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18171 def confidence_threshold @confidence_threshold end |
#mismatch_rate ⇒ Float
Mismatch rate, which measures the tracking consistency, i.e. correctness of
instance ID continuity.
Corresponds to the JSON property mismatchRate
18177 18178 18179 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18177 def mismatch_rate @mismatch_rate end |
#tracking_precision ⇒ Float
Tracking precision.
Corresponds to the JSON property trackingPrecision
18182 18183 18184 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18182 def tracking_precision @tracking_precision end |
#tracking_recall ⇒ Float
Tracking recall.
Corresponds to the JSON property trackingRecall
18187 18188 18189 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18187 def tracking_recall @tracking_recall end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18194 18195 18196 18197 18198 18199 18200 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18194 def update!(**args) @bounding_box_iou = args[:bounding_box_iou] if args.key?(:bounding_box_iou) @confidence_threshold = args[:confidence_threshold] if args.key?(:confidence_threshold) @mismatch_rate = args[:mismatch_rate] if args.key?(:mismatch_rate) @tracking_precision = args[:tracking_precision] if args.key?(:tracking_precision) @tracking_recall = args[:tracking_recall] if args.key?(:tracking_recall) end |