ClassificationProblem.md (428B)
1 # Classification Problem 2 3 ML 1 4 5 # Notes 6 7 **Definition:** There is a discrete number of possible outcomes. 8 9 In other words, if there is a finite set of possible outcomes, it is a classification problem. Oftentimes this manifests as yes/no, but also could include much larger sets of possible values. 10 11 The alternative to this would be a [RegressionProblem](RegressionProblem.md) where the output is a continuous set of values.