Classifier
A classifier is a model used in statistics and machine learning to assign discrete class labels to inputs. Given a feature vector, the classifier outputs a predicted label. Training involves fitting the model to a labeled dataset, learning the relationship between features and the target class. Unlike regression, which predicts continuous values, classification predicts categories.
Classification methods can be supervised and probabilistic or discriminative. They can be binary (two classes) or
The training process typically uses a training set to fit model parameters and a validation set to
Applications span email spam filtering, image and speech recognition, medical diagnosis, fraud detection, and document tagging.
Related concepts include decision boundaries in feature space and the idea that some classifiers are probabilistic