A Naive Bayes spam filter is trained on a corpus where and .
An incoming email contains exactly three indicator words: invoice, urgent, and kitten. The word kitten never appeared in a single spam email during training, so the unsmoothed estimate would have been . After Laplace smoothing the filter's estimates are:
| word | ||
|---|---|---|
| invoice | ||
| urgent | ||
| kitten |
The classifier assumes the three words are conditionally independent given the class.
What is ?
Select all that apply.