Naive Bayes


NAIVE BAYES

  • Two events are independent if the occurrence of one event does not affect the probability of the second event
  • If two events are independent then:
P(AB)=P(A)×P(B)P(A ∩ B) = P(A) \times P(B)
  • A prior is an additional piece of information that tells us how likely an event is
  • A frequentist approach to statistics does not incorporate a prior
  • A Bayesian approach to statistics incorporates prior knowledge
  • Bayes’ Theorem is the following:
P(AB)=P(BA)P(A)P(B)P(A|B) = \frac{P(B|A) \cdot P(A)}{P(B)}

Comments

Popular posts from this blog

Support Vector Machines

ACCURACY, RECALL, PRECISION, F1 SCORE

Random Forest