MLS-C01 · Question #92
A Machine Learning Specialist works for a credit card processing company and needs to predict which transactions may be fraudulent in near-real time. Specifically, the Specialist must train a model…
The correct answer is B. Binary classification. The specialist needs to predict if a transaction is fraudulent and return a probability for this two-class outcome.
Question
A Machine Learning Specialist works for a credit card processing company and needs to predict which transactions may be fraudulent in near-real time. Specifically, the Specialist must train a model that returns the probability that a given transaction may fraudulent. How should the Specialist frame this business problem?
Options
- AStreaming classification
- BBinary classification
- CMulti-category classification
- DRegression classification
How the community answered
(51 responses)- A8% (4)
- B86% (44)
- C4% (2)
- D2% (1)
Why each option
The specialist needs to predict if a transaction is fraudulent and return a probability for this two-class outcome.
Streaming classification refers to the operational aspect of applying the model to a continuous stream of data, not the fundamental type of machine learning problem being solved.
This business problem is framed as binary classification because the goal is to categorize each transaction into one of two mutually exclusive classes: "fraudulent" or "not fraudulent." Additionally, predicting the probability of fraud is a common output of binary classification models, allowing for risk-based decision making.
Multi-category classification involves predicting one of three or more distinct categories, whereas this problem only has two outcomes (fraudulent/not fraudulent).
Regression is used for predicting a continuous numerical value, such as house prices or temperature, not for categorizing items into discrete classes.
Concept tested: Identifying binary classification problems
Source: https://en.wikipedia.org/wiki/Binary_classification
Topics
Community Discussion
No community discussion yet for this question.