Class: Google::Apis::LanguageV2::XpsImageObjectDetectionEvaluationMetrics

Inherits:
Object
  • Object
show all
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

Model evaluation metrics for image object detection problems. Evaluates prediction quality of labeled bounding boxes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsImageObjectDetectionEvaluationMetrics

Returns a new instance of XpsImageObjectDetectionEvaluationMetrics.



2513
2514
2515
# File 'lib/google/apis/language_v2/classes.rb', line 2513

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

Instance Attribute Details

#bounding_box_mean_average_precisionFloat

The single metric for bounding boxes evaluation: the mean_average_precision averaged over all bounding_box_metrics_entries. Corresponds to the JSON property boundingBoxMeanAveragePrecision

Returns:

  • (Float)


2498
2499
2500
# File 'lib/google/apis/language_v2/classes.rb', line 2498

def bounding_box_mean_average_precision
  @bounding_box_mean_average_precision
end

#bounding_box_metrics_entriesArray<Google::Apis::LanguageV2::XpsBoundingBoxMetricsEntry>

The bounding boxes match metrics for each Intersection-over-union threshold 0. 05,0.10,...,0.95,0.96,0.97,0.98,0.99 and each label confidence threshold 0.05, 0.10,...,0.95,0.96,0.97,0.98,0.99 pair. Corresponds to the JSON property boundingBoxMetricsEntries



2505
2506
2507
# File 'lib/google/apis/language_v2/classes.rb', line 2505

def bounding_box_metrics_entries
  @bounding_box_metrics_entries
end

#evaluated_bounding_box_countFixnum

The total number of bounding boxes (i.e. summed over all images) the ground truth used to create this evaluation had. Corresponds to the JSON property evaluatedBoundingBoxCount

Returns:

  • (Fixnum)


2511
2512
2513
# File 'lib/google/apis/language_v2/classes.rb', line 2511

def evaluated_bounding_box_count
  @evaluated_bounding_box_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2518
2519
2520
2521
2522
# File 'lib/google/apis/language_v2/classes.rb', line 2518

def update!(**args)
  @bounding_box_mean_average_precision = args[:bounding_box_mean_average_precision] if args.key?(:bounding_box_mean_average_precision)
  @bounding_box_metrics_entries = args[:bounding_box_metrics_entries] if args.key?(:bounding_box_metrics_entries)
  @evaluated_bounding_box_count = args[:evaluated_bounding_box_count] if args.key?(:evaluated_bounding_box_count)
end