class EncodingEstimator::SingleDetectionResult

Class to store a detection score of a single combination of a conversion and its evaluation score

Attributes

key[R]
score[R]

Public Class Methods

new( key, score ) click to toggle source

Initialize a new object from a conversion identifier key and a score

@param [String] key Conversion identifier key @param [Float] score Scoring value for a combination of distribution and a conversion

# File lib/encoding_estimator/detector.rb, line 58
def initialize( key, score )
  @key   = key
  @score = score
end