Class: Aws::FraudDetector::Types::UncertaintyRange

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb

Overview

Range of area under curve (auc) expected from the model. A range greater than 0.1 indicates higher model uncertainity. A range is the difference between upper and lower bound of auc.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#lower_bound_valueFloat

The lower bound value of the area under curve (auc).

Returns:

  • (Float)


4506
4507
4508
4509
4510
4511
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 4506

class UncertaintyRange < Struct.new(
  :lower_bound_value,
  :upper_bound_value)
  SENSITIVE = []
  include Aws::Structure
end

#upper_bound_valueFloat

The upper bound value of the area under curve (auc).

Returns:

  • (Float)


4506
4507
4508
4509
4510
4511
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 4506

class UncertaintyRange < Struct.new(
  :lower_bound_value,
  :upper_bound_value)
  SENSITIVE = []
  include Aws::Structure
end