Skip to content

Latest commit

 

History

History
67 lines (51 loc) · 3.94 KB

naive-bayes.md

File metadata and controls

67 lines (51 loc) · 3.94 KB

Naive Bayes

Implemented in emlearn

Simple generative model. Very effective at some classification problems. Quick and easy to train, just basic descriptive statistics. Making predictions also quick, amounts to calculating probabilities for each class.

Variations

  • Gaussian,Multinomial,Bernouilli
  • Adaptive Naive Bayes (ANBC)
  • Fuzzy Naive Bayes
  • Rough Gaussian Naive Bayes
  • Non-naive Bayes. Actually takes covariance into account

Naive Bayes classifier implementations

Techniques for improvement

  • Compensate for naive assumption of indepenence. Introduce covariance.
  • Bagging, one-against-many

References

Gaussian Naive Bayes

Prior art for embayes optimization

Baysian Networks