Class: Google::Apis::LanguageV1::XpsBoundingBoxMetricsEntryConfidenceMetricsEntry
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1::XpsBoundingBoxMetricsEntryConfidenceMetricsEntry
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v1/classes.rb,
lib/google/apis/language_v1/representations.rb,
lib/google/apis/language_v1/representations.rb
Overview
Metrics for a single confidence threshold.
Instance Attribute Summary collapse
-
#confidence_threshold ⇒ Float
The confidence threshold value used to compute the metrics.
-
#f1_score ⇒ Float
The harmonic mean of recall and precision.
-
#precision ⇒ Float
Precision for the given confidence threshold.
-
#recall ⇒ Float
Recall for the given confidence threshold.
Instance Method Summary collapse
-
#initialize(**args) ⇒ XpsBoundingBoxMetricsEntryConfidenceMetricsEntry
constructor
A new instance of XpsBoundingBoxMetricsEntryConfidenceMetricsEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ XpsBoundingBoxMetricsEntryConfidenceMetricsEntry
Returns a new instance of XpsBoundingBoxMetricsEntryConfidenceMetricsEntry.
1387 1388 1389 |
# File 'lib/google/apis/language_v1/classes.rb', line 1387 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence_threshold ⇒ Float
The confidence threshold value used to compute the metrics.
Corresponds to the JSON property confidenceThreshold
1370 1371 1372 |
# File 'lib/google/apis/language_v1/classes.rb', line 1370 def confidence_threshold @confidence_threshold end |
#f1_score ⇒ Float
The harmonic mean of recall and precision.
Corresponds to the JSON property f1Score
1375 1376 1377 |
# File 'lib/google/apis/language_v1/classes.rb', line 1375 def f1_score @f1_score end |
#precision ⇒ Float
Precision for the given confidence threshold.
Corresponds to the JSON property precision
1380 1381 1382 |
# File 'lib/google/apis/language_v1/classes.rb', line 1380 def precision @precision end |
#recall ⇒ Float
Recall for the given confidence threshold.
Corresponds to the JSON property recall
1385 1386 1387 |
# File 'lib/google/apis/language_v1/classes.rb', line 1385 def recall @recall end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1392 1393 1394 1395 1396 1397 |
# File 'lib/google/apis/language_v1/classes.rb', line 1392 def update!(**args) @confidence_threshold = args[:confidence_threshold] if args.key?(:confidence_threshold) @f1_score = args[:f1_score] if args.key?(:f1_score) @precision = args[:precision] if args.key?(:precision) @recall = args[:recall] if args.key?(:recall) end |