I have a probability / stats question related to implementing Naive Bayes Classifiers, in particular about implementing Laplace Smoothing to avoid the Zero count issue and overfitting.
From what Ive read, the basic NBC formula using MLE looks like this:
p(C│F_1 ...F_n )=(p(C)p(F_1 |C)...p(F_n |C))/(p(F_1)...p(F_n))
However if one of the p(F_i |C) is zero, the whole probability becomes 0. One solution is Lapace smooth
p(F_i│C)~(x_i+k)/(N+kd)
Where x_i is the number of times F_i appeared in class C, N is the number of times class C occurred and d is the number of distinct values F_i has been known to take on.
My question is this:
What if anything needs to be done to p(C) in the numerator, and p(F_i) in the denominator?