Generative and Discriminative modelling #4
-
What is the difference between generative and discriminative modelling? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Generative modelling:Generative modelling is a statistical modeling technique that aims to model the entire probability distribution of the data. In other words, it tries to model the underlying patterns and relationships that generate the observed data. Given a set of inputs, a generative model generates new examples that are similar to the training data. Generative models are trained to learn the joint probability distribution Some examples of generative models include Gaussian mixture models, Hidden Markov Models, and Variational Autoencoders. Discriminative modellingDiscriminative modelling, on the other hand, focuses on modeling the conditional probability distribution Some examples of discriminative models include Logistic Regression, Support Vector Machines, and Neural Networks. |
Beta Was this translation helpful? Give feedback.
-
I found this helpful too. |
Beta Was this translation helpful? Give feedback.
Generative modelling:
Generative modelling is a statistical modeling technique that aims to model the entire probability distribution of the data. In other words, it tries to model the underlying patterns and relationships that generate the observed data. Given a set of inputs, a generative model generates new examples that are similar to the training data. Generative models are trained to learn the joint probability distribution$P(X,Y)$ $X$ and the output $Y$
of the input
Some examples of generative models include Gaussian mixture models, Hidden Markov Models, and Variational Autoencoders.
Discriminative modelling
Discriminative modelling, on the other hand, focuses on modeling the cond…