A company wants to use Einstein to predict the optimal discount amount for each deal. Which type of machine learning problem does this represent?
Regression predicts continuous numeric outcomes.
Why this answer
Predicting a continuous numerical value, such as the optimal discount amount for a deal, is a regression problem. In the context of Einstein, this would use a regression model to learn from historical deal data and output a specific discount percentage or dollar amount, rather than a category or cluster.
Exam trap
Salesforce often tests the distinction between regression and classification by presenting a scenario where the output is a number, leading candidates to mistakenly think it is classification because they associate 'prediction' with categories, but the key is whether the output is continuous or discrete.
How to eliminate wrong answers
Option A is wrong because reinforcement learning involves an agent learning to make sequences of decisions through trial and error to maximize a reward, not predicting a single continuous value like a discount amount. Option C is wrong because classification predicts discrete categories or labels (e.g., 'high discount' vs 'low discount'), not a continuous numerical output. Option D is wrong because clustering groups unlabeled data into clusters based on similarity, without a target variable to predict a specific discount amount.