Class: Aws::FraudDetector::Types::UncertaintyRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::FraudDetector::Types::UncertaintyRange
- Includes:
- Structure
- Defined in:
- 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
-
#lower_bound_value ⇒ Float
The lower bound value of the area under curve (auc).
-
#upper_bound_value ⇒ Float
The upper bound value of the area under curve (auc).
Instance Attribute Details
#lower_bound_value ⇒ Float
The lower bound value of the area under curve (auc).
4506 4507 4508 4509 4510 4511 |
# File '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_value ⇒ Float
The upper bound value of the area under curve (auc).
4506 4507 4508 4509 4510 4511 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 4506 class UncertaintyRange < Struct.new( :lower_bound_value, :upper_bound_value) SENSITIVE = [] include Aws::Structure end |