Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::FraudDetector::Types::LabelSchema

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

Overview

The label schema.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#label_mapperHash<String,Array<String>>

The label mapper maps the Amazon Fraud Detector supported model classification labels (FRAUD, LEGIT) to the appropriate event type labels. For example, if "FRAUD" and "LEGIT" are Amazon Fraud Detector supported labels, this mapper could be: {"FRAUD" => ["0"], "LEGIT" => ["1"]} or {"FRAUD" => ["false"], "LEGIT" => ["true"]} or {"FRAUD" => ["fraud", "abuse"], "LEGIT" => ["legit", "safe"]}. The value part of the mapper is a list, because you may have multiple label variants from your event type for a single Amazon Fraud Detector label.

Returns:

  • (Hash<String,Array<String>>)

3214
3215
3216
3217
3218
3219
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 3214

class LabelSchema < Struct.new(
  :label_mapper,
  :unlabeled_events_treatment)
  SENSITIVE = []
  include Aws::Structure
end

#unlabeled_events_treatmentString

The action to take for unlabeled events.

  • Use IGNORE if you want the unlabeled events to be ignored. This is recommended when the majority of the events in the dataset are labeled.

  • Use FRAUD if you want to categorize all unlabeled events as “Fraud”. This is recommended when most of the events in your dataset are fraudulent.

  • Use LEGIT if you want to categorize all unlabeled events as “Legit”. This is recommended when most of the events in your dataset are legitimate.

  • Use AUTO if you want Amazon Fraud Detector to decide how to use the unlabeled data. This is recommended when there is significant unlabeled events in the dataset.

By default, Amazon Fraud Detector ignores the unlabeled data.

Returns:

  • (String)

3214
3215
3216
3217
3218
3219
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 3214

class LabelSchema < Struct.new(
  :label_mapper,
  :unlabeled_events_treatment)
  SENSITIVE = []
  include Aws::Structure
end