1.2 Outline machine learning problem types.
1.What is the primary distinguishing factor between binary classification and multi-class classification?
- A.The type of input data (structured vs. unstructured)
- B.The number of possible output categories
- C.The use of labeled versus unlabeled data
- D.The prediction of a continuous versus a discrete value
Show answer & explanation
Correct answer: B — The number of possible output categories
- A. Incorrect. The type of input data, whether structured or unstructured, does not distinguish between binary and multi-class classification. Both types of classification models can be trained on various data formats.
- B. Correct. This is the fundamental difference. Binary classification predicts one of two possible outcomes (e.g., yes/no, true/false), meaning it has exactly two output categories. Multi-class classification predicts one of more than two possible outcomes (e.g., cat/dog/bird).
- C. Incorrect. Both binary and multi-class classification are types of supervised learning, which means they both require labeled data for training. The use of labeled versus unlabeled data is the primary distinction between supervised and unsupervised learning.
- D. Incorrect. Both binary and multi-class classification problems involve predicting a discrete, categorical value (a class label). The distinction between predicting a continuous value (like price or temperature) and a discrete value is what separates regression from classification.