bayes Flashcards

1
Q

name 3 problems with Bayesion / belief networks:

A
  • The construction of the network is done manually
  • The estimations of probability is not always easy without the data
  • The product of probabilities leads to a propagation of errors in long chains.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what are bayesian networks / belief networks?

A

data structures that represent the dependencies among variables in a directed, acyclic graph, where every link represents a direct influence from the parent to the child node. The child node can then represent the conditional distribution for each parent values in a conditional probability table (CPT)

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

what 2 methods can be used to apply bayes’ on continuous data?

A
  1. Binning: divide the range of continuous data into a discrete number of bins, then apply the discrete method.
  2. Mixture of Gaussians: make an assumption regarding the PDF and derive the corresponding parameters.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what is bayes’ formula / rule

A

P(A|B) = (P(B | A)P(A))/P(B)

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

what does P(A|B) = P(A^B) / P(B) actually say?

A

the probability of A given B, is the probability that A and B appear at the same time, divided by the probability that B appears on its own (prior).

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

definition of posterior probabilities:

A

P(A|B) = P(A ^ B) / P(B)

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

Prior probabilities are

A

beliefs prior to arrival of any evidence. For example the probability that it is sunny outside.

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

Posterior or conditional probabilities are

A

the probability based on evidence, for example the probability that it is sunny outside, given that we’re in December.

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

name 3 problems with Bayesion / belief networks:

A
  • The construction of the network is done manually
  • The estimations of probability is not always easy without the data
  • The product of probabilities leads to a propagation of errors in long chains.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is p(X|C)

A

the conditional likelihood of the data given the class

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

p(C|X)

A

posterior: probability of the class after seeing the data

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

p(C)

A

probability of the class before seeing anything

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

p(X)

A

probability of the data

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

naive bayes assumptions

A

no pair of predicting features is dependent

each feature is given the same importance, contributing equally to the outcome

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