diff --git a/contrib/machine-learning/Naive_Bayes_Classifiers.md b/contrib/machine-learning/Naive_Bayes_Classifiers.md index 68dcbd3..50def11 100644 --- a/contrib/machine-learning/Naive_Bayes_Classifiers.md +++ b/contrib/machine-learning/Naive_Bayes_Classifiers.md @@ -6,7 +6,7 @@ It is not a single algorithm but a family of algorithms where all of them share ## Bayes’ Theorem: Bayes’ Theorem finds the probability of an event occurring given the probability of another event that has already occurred. Bayes’ theorem is stated mathematically as the following equation: -P(C|X) = \frac{P(X|C) \cdot P(C)}{P(X)} +$$ P(C|X) = \frac{P(X|C) \cdot P(C)}{P(X)} $$ ![img.png](img.png)