From bab7d667e6eae52ef6ead02951f7952e0102a21c Mon Sep 17 00:00:00 2001 From: Divyanshi <126316406+DivyanshiSingh00@users.noreply.github.com> Date: Wed, 19 Jun 2024 14:54:41 +0530 Subject: [PATCH] Update Naive_Bayes_Classifiers.md --- contrib/machine-learning/Naive_Bayes_Classifiers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)