MetricDataPoint
public struct MetricDataPoint : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The false positive rate. This is the percentage of total legitimate events that are incorrectly predicted as fraud.
Declaration
Swift
public let fpr: Float?
-
The percentage of fraud events correctly predicted as fraudulent as compared to all events predicted as fraudulent.
Declaration
Swift
public let precision: 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.
Declaration
Swift
public let threshold: Float?
-
The true positive rate. This is the percentage of total fraud the model detects. Also known as capture rate.
Declaration
Swift
public let tpr: Float?
-
Undocumented
Declaration
Swift
public init(fpr: Float? = nil, precision: Float? = nil, threshold: Float? = nil, tpr: Float? = nil)