Class: Google::Apis::LanguageV2::XpsBoundingBoxMetricsEntryConfidenceMetricsEntry
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV2::XpsBoundingBoxMetricsEntryConfidenceMetricsEntry
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v2/classes.rb,
lib/google/apis/language_v2/representations.rb,
lib/google/apis/language_v2/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.
1087 1088 1089 |
# File 'lib/google/apis/language_v2/classes.rb', line 1087 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
1070 1071 1072 |
# File 'lib/google/apis/language_v2/classes.rb', line 1070 def confidence_threshold @confidence_threshold end |
#f1_score ⇒ Float
The harmonic mean of recall and precision.
Corresponds to the JSON property f1Score
1075 1076 1077 |
# File 'lib/google/apis/language_v2/classes.rb', line 1075 def f1_score @f1_score end |
#precision ⇒ Float
Precision for the given confidence threshold.
Corresponds to the JSON property precision
1080 1081 1082 |
# File 'lib/google/apis/language_v2/classes.rb', line 1080 def precision @precision end |
#recall ⇒ Float
Recall for the given confidence threshold.
Corresponds to the JSON property recall
1085 1086 1087 |
# File 'lib/google/apis/language_v2/classes.rb', line 1085 def recall @recall end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1092 1093 1094 1095 1096 1097 |
# File 'lib/google/apis/language_v2/classes.rb', line 1092 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 |