
Explanation:
The question describes a scenario where a financial company needs to classify credit card transactions into two distinct categories: potentially fraudulent or non-fraudulent. This is a classic example of a binary classification problem in machine learning, where the model predicts one of two possible outcomes.
Why C (Binary classification) is correct:
Why other options are incorrect:
Best Practices Consideration: For fraud detection, binary classification is the industry standard approach. It allows for clear decision boundaries, interpretability of results, and optimization of metrics like precision and recall to balance false positives (legitimate transactions flagged as fraud) and false negatives (fraudulent transactions missed).
Ultimate access to all questions.
A financial company needs to classify all credit card transactions as either potentially fraudulent or non-fraudulent using transaction data.
Which machine learning model type is appropriate for this requirement?
A
Regression
B
Diffusion
C
Binary classification
D
Multi-class classification
No comments yet.