Both the hMM and Naive Bayes have conditional independence assumption.
hMM can be expressed by the equation below :
![]()
![Rendered by QuickLaTeX.com \[p(x|y)p(y)\,=\,\prod_{t=1}^{T}p(x_{t}|y_{t})p(y_{t}|y_{t-1})\]](https://machinelearninginterview.com/wp-content/ql-cache/quicklatex.com-a253cff32ae6b5347f572a599c52dac5_l3.png)
Second equation implies a conditional independence assumption: Given the state
observed variable
is conditionally independent of previous observed variables, i.e.
and ![]()
Naive Bayes Model is expressed as:
![]()
is the
feature for the data sample
and
is the
label for
class problem.
The above equation can be written as
![]()
This implies a conditional independence assumption: given the class label, data features are independent of each other.