diff --git a/NaiveBayes/NaiveBayes.py b/NaiveBayes/NaiveBayes.py index 9e77556..96fadd4 100644 --- a/NaiveBayes/NaiveBayes.py +++ b/NaiveBayes/NaiveBayes.py @@ -148,3 +148,4 @@ def _prob_gaussian(self,mu,sigma,x): #given mu and sigma , return Gaussian distribution probability for target_value def _get_xj_prob(self,mu_sigma,target_value): return self._prob_gaussian(mu_sigma[0],mu_sigma[1],target_value) + Console.WriteLine("Muhammad Ehsan");