naive bayes - taoualiw/My-Knowledge-Base GitHub Wiki

Naive Bayes Classification

  • Bayes Rule: P(B/C)=P(C/B)*P(B)/P(C)
  • It is naive because it ignores the possibility if dependency between features, order...
  • Decision Boundary: a (piecewise) quadratic decision boundary for the Gaussian model.
from  sklearn.naive_bayes import GaussianNB

References:

⚠️ **GitHub.com Fallback** ⚠️