nerdexam
Amazon

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.

Modeling

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)
  • A
    8% (4)
  • B
    86% (44)
  • C
    4% (2)
  • D
    2% (1)

Why each option

The specialist needs to predict if a transaction is fraudulent and return a probability for this two-class outcome.

AStreaming classification

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.

BBinary classificationCorrect

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.

CMulti-category classification

Multi-category classification involves predicting one of three or more distinct categories, whereas this problem only has two outcomes (fraudulent/not fraudulent).

DRegression classification

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

#Machine Learning Problem Types#Binary Classification#Fraud Detection#Problem Framing

Community Discussion

No community discussion yet for this question.

Full MLS-C01 Practice