According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module “Identify features of classification machine learning”, classification is a type of supervised machine learning used when the goal is to predict a categorical outcome. That means the output variable represents discrete labels such as Yes/No, True/False, or Category A/B/C.
In this example, the model is predicting whether a person uses a bicycle (Yes or No) — a binary categorical outcome. The input (distance from home to work) is numeric, but the prediction is a class or category, which makes it a classification problem.
To compare:
A and D (predicting how many cups of coffee or race minutes) involve numeric predictions, which are regression tasks.
B (grouping images by similar colors) involves clustering, an unsupervised learning method used to find natural groupings in data.
Thus, the use case that fits classification is predicting whether someone uses a bicycle, since the answer is categorical.
[Reference:Microsoft Learn – Identify the types of machine learning models: Classification, Regression, and Clustering (AI-900 Learning Path), , , , ]
Submit