Update Naive_Bayes_Classifiers.md

pull/1210/head
Divyanshi 2024-06-19 15:03:34 +05:30 zatwierdzone przez GitHub
rodzic 3647a0e0f1
commit ef1cd119a3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -75,7 +75,10 @@ In Gaussian Naive Bayes, continuous values associated with each feature are assu
* Assumption: Each feature follows a Gaussian distribution.
* Formula: The likelihood of the features given the class is computed using the Gaussian (normal) distribution formula:
\( P(C_k | x) = \frac{1}{\sqrt{2\pi\sigma^2}} \exp\left(-\frac{(x - \mu)^2}{2\sigma^2}\right) \)
$$
P(C_k | x) = \frac{1}{\sqrt{2\pi\sigma^2}} \exp\left(-\frac{(x - \mu)^2}{2\sigma^2}\right)
$$
![img_3.png](img_3.png)