Class: Aws::FraudDetector::Types::OFIMetricDataPoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::FraudDetector::Types::OFIMetricDataPoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-frauddetector/types.rb
Overview
The Online Fraud Insights (OFI) model performance metrics data points.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fpr ⇒ Float
The false positive rate.
-
#precision ⇒ Float
The percentage of fraud events correctly predicted as fraudulent as compared to all events predicted as fraudulent.
-
#threshold ⇒ Float
The model threshold that specifies an acceptable fraud capture rate.
-
#tpr ⇒ Float
The true positive rate.
Instance Attribute Details
#fpr ⇒ Float
The false positive rate. This is the percentage of total legitimate events that are incorrectly predicted as fraud.
3697 3698 3699 3700 3701 3702 3703 3704 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 3697 class OFIMetricDataPoint < Struct.new( :fpr, :precision, :tpr, :threshold) SENSITIVE = [] include Aws::Structure end |
#precision ⇒ Float
The percentage of fraud events correctly predicted as fraudulent as compared to all events predicted as fraudulent.
3697 3698 3699 3700 3701 3702 3703 3704 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 3697 class OFIMetricDataPoint < Struct.new( :fpr, :precision, :tpr, :threshold) SENSITIVE = [] include Aws::Structure end |
#threshold ⇒ Float
The model threshold that specifies an acceptable fraud capture rate. For example, a threshold of 500 means any model score 500 or above is labeled as fraud.
3697 3698 3699 3700 3701 3702 3703 3704 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 3697 class OFIMetricDataPoint < Struct.new( :fpr, :precision, :tpr, :threshold) SENSITIVE = [] include Aws::Structure end |
#tpr ⇒ Float
The true positive rate. This is the percentage of total fraud the model detects. Also known as capture rate.
3697 3698 3699 3700 3701 3702 3703 3704 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 3697 class OFIMetricDataPoint < Struct.new( :fpr, :precision, :tpr, :threshold) SENSITIVE = [] include Aws::Structure end |