Discriminative models, also referred to asconditional models, are a class of models frequently used forclassification. Inmachine learning, it typically models the conditional distribution P(Y∣X), or it learns a direct decision rule that maps inputs X to outputs Y. Discriminative models are commonly used forclassification andregression, where the main goal is accurate prediction on new data. They are typically used to solvebinary classification problems, i.e. assign labels, such as pass/fail, win/lose, alive/dead or healthy/sick, to existing datapoints. Discriminative models are usually trained to separate classes or to minimizeprediction error under a chosenloss function. They are often contrasted with generative models, which aim to model how the data are generated and can be used to sample new data.
Types of discriminative models includelogistic regression (LR),conditional random fields (CRFs),decision trees among many others.
Unlike generative modelling, which studies thejoint probability, discriminative modeling studies the or maps the given unobserved variable (target) to a class label dependent on the observed variables (training samples). For example, inobject recognition, is likely to be a vector of raw pixels (or features extracted from the raw pixels of the image). Within a probabilistic framework, this is done by modeling theconditional probability distribution, which can be used for predicting from. Note that there is still distinction between the conditional model and the discriminative model, though more often they are simply categorised as discriminative model.
Aconditional model models the conditionalprobability distribution, while the traditional discriminative model aims to optimize on mapping the input around the most similar trained samples.[1]
Instatistical classification, two main approaches are called thegenerative approach and thediscriminative approach. These computeclassifiers by different approaches, differing in the degree ofstatistical modelling. Terminology is inconsistent,[a] but three major types can be distinguished:
The distinction between these last two classes is not consistently made.
An alternative division defines these symmetrically as:
Regardless of precise definition, the terminology is constitutional because a generative model can be used to "generate" random instances (outcomes), either of an observation and target, or of an observationx given a target valuey, while a discriminative model or discriminative classifier (without a model) can be used to "discriminate" the value of the target variableY, given an observationx.
Let's say we are given the class labels (classification) and feature variables,, as the training samples.
A generative model takes the joint probability, where is the input and is the label, and predicts the most possible known label for the unknown variable usingBayes' theorem.
Discriminative models, as opposed togenerative models, do not allow one to generate samples from thejoint distribution of observed and target variables. However, for tasks such asclassification andregression that do not require the joint distribution, discriminative models can yield superior performance (in part because they have fewer variables to compute). On the other hand, generative models are typically more flexible than discriminative models in expressing dependencies in complex learning tasks. In addition, most discriminative models are inherentlysupervised and cannot easily supportunsupervised learning. Application-specific details ultimately dictate the suitability of selecting a discriminative versus generative model.
Discriminative models and generative models also differ in introducing theposterior possibility. To maintain the least expected loss, the minimization of result's misclassification should be acquired. In the discriminative model, the posterior probabilities,, is inferred from a parametric model, where the parameters come from the training data. Points of estimation of the parameters are obtained from the maximization of likelihood or distribution computation over the parameters. On the other hand, considering that the generative models focus on the joint probability, the class posterior possibility is considered inBayes' theorem, which is
In the repeated experiments, logistic regression and naive Bayes are applied here for different models on binary classification task, discriminative learning results in lower asymptotic errors, while generative one results in higher asymptotic errors faster. However, in Ulusoy and Bishop's joint work,Comparison of Generative and Discriminative Techniques for Object Detection and Classification, they state that the above statement is true only when the model is the appropriate one for data (i.e.the data distribution is correctly modeled by the generative model).
Significant advantages of using discriminative modeling are:
Compared with the advantages of using generative modeling:
The following approach is based on the assumption that it is given the training data-set, where is the corresponding output for the input.[2]
We intend to use the function to simulate the behavior of what we observed from the training data-set by thelinear classifier method. Using the joint feature vector, the decision function is defined as:
According to Memisevic's interpretation,[2], which is also, computes a score which measures the compatibility of the input with the potential output. Then the determines the class with the highest score.
Since the0-1 loss function is a commonly used one in the decision theory, the conditionalprobability distribution, where is a parameter vector for optimizing the training data, could be reconsidered as following for the logistics regression model:
The equation above representslogistic regression. Notice that a major distinction between models is their way of introducing posterior probability. Posterior probability is inferred from the parametric model. We then can maximize the parameter by following equation:
It could also be replaced by thelog-loss equation below:
Since thelog-loss is differentiable, a gradient-based method can be used to optimize the model. A global optimum is guaranteed because the objective function is convex. The gradient of log likelihood is represented by:
where is the expectation of.
The above method will provide efficient computation for the relative small number of classification.
Since both advantages and disadvantages present on the two way of modeling, combining both approaches will be a good modeling in practice. For example, in Marras' articleA Joint Discriminative Generative Model for Deformable Model Construction and Classification,[3] he and his coauthors apply the combination of two modelings on face classification of the models, and receive a higher accuracy than the traditional approach.
Similarly, Kelm[4] also proposed the combination of two modelings for pixel classification in his articleCombining Generative and Discriminative Methods for Pixel Classification with Multi-Conditional Learning.
During the process of extracting the discriminative features prior to the clustering,Principal component analysis (PCA), though commonly used, is not a necessarily discriminative approach. In contrast, LDA is a discriminative one.[5]Linear discriminant analysis (LDA), provides an efficient way of eliminating the disadvantage we list above. As we know, the discriminative model needs a combination of multiple subtasks before classification, and LDA provides appropriate solution towards this problem by reducing dimension.
Examples of discriminative models include: