+2 votes
in Data Science by
Why is Naive Bayes so bad? How would you improve a spam detection algorithm that uses naive Bayes?

1 Answer

0 votes
by

One major drawback of Naive Bayes is that it holds a strong assumption in that the features are assumed to be uncorrelated with one another, which typically is never the case.

One way to improve such an algorithm that uses Naive Bayes is by decorrelating the features so that the assumption holds true.

...