Class: Google::Apis::LanguageV1::XpsImageSegmentationEvaluationMetricsConfidenceMetricsEntry

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsImageSegmentationEvaluationMetricsConfidenceMetricsEntry

Returns a new instance of XpsImageSegmentationEvaluationMetricsConfidenceMetricsEntry.



2926
2927
2928
# File 'lib/google/apis/language_v1/classes.rb', line 2926

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)


2899
2900
2901
# File 'lib/google/apis/language_v1/classes.rb', line 2899

def confidence_threshold
  @confidence_threshold
end

#confusion_matrixGoogle::Apis::LanguageV1::XpsConfusionMatrix

Confusion matrix of the model running the classification. Corresponds to the JSON property confusionMatrix



2904
2905
2906
# File 'lib/google/apis/language_v1/classes.rb', line 2904

def confusion_matrix
  @confusion_matrix
end

#dice_score_coefficientFloat

DSC or the F1 score: The harmonic mean of recall and precision. Corresponds to the JSON property diceScoreCoefficient

Returns:

  • (Float)


2909
2910
2911
# File 'lib/google/apis/language_v1/classes.rb', line 2909

def dice_score_coefficient
  @dice_score_coefficient
end

#iou_scoreFloat

IOU score. Corresponds to the JSON property iouScore

Returns:

  • (Float)


2914
2915
2916
# File 'lib/google/apis/language_v1/classes.rb', line 2914

def iou_score
  @iou_score
end

#precisionFloat

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

Returns:

  • (Float)


2919
2920
2921
# File 'lib/google/apis/language_v1/classes.rb', line 2919

def precision
  @precision
end

#recallFloat

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

Returns:

  • (Float)


2924
2925
2926
# File 'lib/google/apis/language_v1/classes.rb', line 2924

def recall
  @recall
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2931
2932
2933
2934
2935
2936
2937
2938
# File 'lib/google/apis/language_v1/classes.rb', line 2931

def update!(**args)
  @confidence_threshold = args[:confidence_threshold] if args.key?(:confidence_threshold)
  @confusion_matrix = args[:confusion_matrix] if args.key?(:confusion_matrix)
  @dice_score_coefficient = args[:dice_score_coefficient] if args.key?(:dice_score_coefficient)
  @iou_score = args[:iou_score] if args.key?(:iou_score)
  @precision = args[:precision] if args.key?(:precision)
  @recall = args[:recall] if args.key?(:recall)
end