Videos
$$ \begin{align*} P(Hypothesis|Evidence) &=\frac{P(Evidence|Hypothesis)P(Hypothesis)}{P(Evidence)} \\ \\ &= \frac{P(E|H)P(H)}{P(E|H)P(H)+P(E|notH)P(not H)} \\ \end{align*}
$$
Bayesian inference is a method of statistical inference that applies Bayes' theorem to update probability estimates for hypotheses based on new evidence or data. It provides a framework for making probabilistic predictions and updating beliefs in the presence of uncertainty. The core idea behind Bayesian inference is to use prior knowledge and combine it with observed data to obtain a posterior probability distribution, which represents the updated beliefs about the parameters of interest.
Video: Naive Bayes, Clearly Explained!!!
For spam filter example:
P(Spam | Text)
is proportional to P(Hello | Spam) x P(World | Spam) x P(Spam)
P(Normal | Text)
Why is Naive Bayes naive?