language-icon Old Web
English
Sign In

Linear classifier

In the field of machine learning, the goal of statistical classification is to use an object's characteristics to identify which class (or group) it belongs to. A linear classifier achieves this by making a classification decision based on the value of a linear combination of the characteristics. An object's characteristics are also known as feature values and are typically presented to the machine in a vector called a feature vector. Such classifiers work well for practical problems such as document classification, and more generally for problems with many variables (features), reaching accuracy levels comparable to non-linear classifiers while taking less time to train and use. In the field of machine learning, the goal of statistical classification is to use an object's characteristics to identify which class (or group) it belongs to. A linear classifier achieves this by making a classification decision based on the value of a linear combination of the characteristics. An object's characteristics are also known as feature values and are typically presented to the machine in a vector called a feature vector. Such classifiers work well for practical problems such as document classification, and more generally for problems with many variables (features), reaching accuracy levels comparable to non-linear classifiers while taking less time to train and use. If the input feature vector to the classifier is a real vector x → {displaystyle {vec {x}}} , then the output score is where w → {displaystyle {vec {w}}} is a real vector of weights and f is a function that converts the dot product of the two vectors into the desired output. (In other words, w → {displaystyle {vec {w}}} is a one-form or linear functional mapping x → {displaystyle {vec {x}}} onto R.) The weight vector w → {displaystyle {vec {w}}} is learned from a set of labeled training samples. Often f is a threshold function, which maps all values of w → ⋅ x → {displaystyle {vec {w}}cdot {vec {x}}} above a certain threshold to the first class and all other values to the second class; e.g., A more complex f might give the probability that an item belongs to a certain class. For a two-class classification problem, one can visualize the operation of a linear classifier as splitting a high-dimensional input space with a hyperplane: all points on one side of the hyperplane are classified as 'yes', while the others are classified as 'no'. A linear classifier is often used in situations where the speed of classification is an issue, since it is often the fastest classifier, especially when x → {displaystyle {vec {x}}} is sparse. Also, linear classifiers often work very well when the number of dimensions in x → {displaystyle {vec {x}}} is large, as in document classification, where each element in x → {displaystyle {vec {x}}} is typically the number of occurrences of a word in a document (see document-term matrix). In such cases, the classifier should be well-regularized. There are two broad classes of methods for determining the parameters of a linear classifier w → {displaystyle {vec {w}}} . They can be generative and discriminative models. Methods of the first class model conditional density functions P ( x → | c l a s s ) {displaystyle P({vec {x}}|{ m {class}})} . Examples of such algorithms include: The second set of methods includes discriminative models, which attempt to maximize the quality of the output on a training set. Additional terms in the training cost function can easily perform regularization of the final model. Examples of discriminative training of linear classifiers include: Note: Despite its name, LDA does not belong to the class of discriminative models in this taxonomy. However, its name makes sense when we compare LDA to the other main linear dimensionality reduction algorithm: principal components analysis (PCA). LDA is a supervised learning algorithm that utilizes the labels of the data, while PCA is an unsupervised learning algorithm that ignores the labels. To summarize, the name is a historical artifact.:117

[ "Support vector machine", "Classifier (linguistics)", "Classifier (UML)", "nonlinear classifier" ]
Parent Topic
Child Topic
    No Parent Topic