Please help me understand the difference between a Generative and Discriminative Algorithm keeping in mind that I am just a beginner.
|
feedback
|
|
Let's say you have input data x and you want to classify the data into labels y. A generative model learns the joint probability distribution Here's a really simple example. Suppose you have the following data in the form (x,y):
If you take a few minutes to stare at those two matrices, you will understand the difference between the two probability distributions. The distribution From the description above you might be thinking that generative models are more generally useful and therefore better, but it's not as simple as that. This paper is a very popular reference on the subject of discriminative vs. generative classifiers, but it's pretty heavy going. The overall gist is that discriminative models generally outperform generative models in classification tasks. | |||||
feedback
|
|
A generative algorithm models how the data was generated in order to categorize a signal. It asks the question: based on my generation assumptions, which category is most likely to generate this signal? A discriminative algorithm does not care about how the data was generated, it simply categorizes a given signal. | |||
|
feedback
|
|
Imagine your task is to classify a speech to a language: you can do it either by: 1. Learning each language and then classifying it using the knowledge you just gained OR
the first one is the Generative Approach and the second one is the Discriminative approach. check this reference for more details: http://www.cedar.buffalo.edu/~srihari/CSE574/Discriminative-Generative.pdf | |||
|
feedback
|
|
Generally there is a practice in machine learning community not to learn something that you don’t want for the task. For example, consider a classification task where you goal is to assign y labels to a given x input. If we use generative model
we have to model p(x) which is irreverent for the task in hand. Practical limitations like data sparseness will force us to model | |||
|
feedback
|