Core Machine Learning Topics
Classification
分類
Classification is a common supervised-learning task in which a model predicts a class label. Binary classification uses two classes, while multiclass classification chooses among more than two.
Japanese terms
- Classification — 分類: The task of assigning an input to one or more discrete categories.
- Class label — クラスラベル: The category name or identifier predicted in a classification task.
- Binary classification — 二値分類: Classification in which each example is assigned to one of two classes.
- Multiclass classification — 多クラス分類: Classification in which an example is selected from more than two possible classes.
Related topics
Regression predicts continuous values instead of discrete classes.