Method: Licensee.inverse_confidence_threshold

Defined in:
lib/licensee.rb

.inverse_confidence_thresholdObject

Inverse of the confidence threshold, represented as a float By default this will be 0.02



58
59
60
61
# File 'lib/licensee.rb', line 58

def inverse_confidence_threshold
  @inverse_confidence_threshold ||=
    (1 - (Licensee.confidence_threshold / 100.0)).round(2)
end