[참고]
Generative vs. Discriminative models
Generative models specify a joint distribution over the labels and the data. With this you could generate new data
P( x, y ) = P( y ) P( x | y )
Naive Bayes, HMM, GAN
-> 확률분포를 찾자!
Discriminative models specify the conditional distribution of the label y given the data x. These models focus on how to discriminate between the classes.
P ( y | x )
->logistic regression, RNN, softmax
-> 이진분류 모델을 학습시키자!
[Hidden Markov Model : HMM의 기본이론]
- Markov Assumption - 이전 혹은 직전의 Context는 현재를 반영한다.
- output Independent - 현재의 y는 x에 영향을 준다.