Class: Google::Apis::LanguageV1beta2::XpsBoundingBoxMetricsEntryConfidenceMetricsEntry

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/language_v1beta2/classes.rb,
lib/google/apis/language_v1beta2/representations.rb,
lib/google/apis/language_v1beta2/representations.rb

Overview

Metrics for a single confidence threshold.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsBoundingBoxMetricsEntryConfidenceMetricsEntry

Returns a new instance of XpsBoundingBoxMetricsEntryConfidenceMetricsEntry.



1407
1408
1409
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1407

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#confidence_thresholdFloat

The confidence threshold value used to compute the metrics. Corresponds to the JSON property confidenceThreshold

Returns:

  • (Float)


1390
1391
1392
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1390

def confidence_threshold
  @confidence_threshold
end

#f1_scoreFloat

The harmonic mean of recall and precision. Corresponds to the JSON property f1Score

Returns:

  • (Float)


1395
1396
1397
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1395

def f1_score
  @f1_score
end

#precisionFloat

Precision for the given confidence threshold. Corresponds to the JSON property precision

Returns:

  • (Float)


1400
1401
1402
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1400

def precision
  @precision
end

#recallFloat

Recall for the given confidence threshold. Corresponds to the JSON property recall

Returns:

  • (Float)


1405
1406
1407
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1405

def recall
  @recall
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1412
1413
1414
1415
1416
1417
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1412

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