Calculate the posterior probability of class label C given a set of features F using the Naive Bayes formula.
P(C | F) = (P(F | C) + P(C)) / P(F)
P(C | F) = (P(F | C) - P(C)) / P(F)
P(C | F) = (P(F | C) * P(C)) / P(F)

Machine Learning Algorithms Exercises are loading ...