Tagged Questions
1
vote
0answers
55 views
Difference and connection between generative learning, discriminative learning and max-margin learning
I once heard that, generative learning, discriminative learning and max-margin learning can be separated in terms of their respective definition of loss function. I am not sure how to achieve that?
3
votes
2answers
569 views
Why are Gaussian “discriminant” analysis models called so?
Gaussian discriminant analysis models learn $P(x|y)$ and then apply Bayes rule to evaluate
$$P(y|x) = \frac{P(x|y)P_{prior}(y)}{\Sigma_{g \in Y} P(x|g) P_{prior}(g) }.$$ Hence, they are generative ...