Naive Bayes Flashcards

1
Q

What topics are covered in the outline of this deck?

A

Bayes Theorem
Bayesian Classification
Naibe Bayes for Classification

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the mathematical formula of Bayes’ formula?

A

P(A|B) = [P(B|A) * P(A)] / P(B)

P(A|B) = Probability of A given B (the posterior probability)
P(B|A) = Probability of B given A (the likelihood)
P(A) = Prior probability of A
P(B) = Probability of B (marginal probability)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

In Bayesian Classification what do we do when we have many examples for each possible combination of values for all predictor attributes, but different classes?

A

The optimal classification, to maximise accuracy, would be to choose the most frequent class for that combination of attribute values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are some limitations of Naïve Bayes?

A

Assumes each attribute is independent from all other attributes, given a class.
- This is usually an unrealistic assumption
- This is also why Naïve Bayes is naïve

Classification accuracy is sensitive to redundant attributes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are some strengths of Naïve Bayes

A

Is able to deal with missing attributes.
- Missing attributes can be ignored because attributes are conditionally independent given the class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly