Top "Naivebayes" questions

Naive Bayes is a popular (baseline) method for text-classification.

How can I use sklearn.naive_bayes with (multiple) categorical features?

I want to learn a Naive Bayes model for a problem where the class is boolean (takes on one of …

machine-learning statistics scikit-learn naivebayes
Linear Discriminant Analysis vs Naive Bayes

What are the advantages and disadvantages of LDA vs Naive Bayes in terms of machine learning classification? I know some …

machine-learning classification naivebayes linear-discriminant machine-learning-model
What should be taken as m in m estimate of probability in Naive Bayes

What should be taken as m in m estimate of probability in Naive Bayes? So for this example what m …

machine-learning pattern-recognition naivebayes
Using naive bayes to predict new values

I have a dataframe that looks like this weather <- c("good", "good", "good", "bad", "bad", "good") temp <…

r naivebayes