Probability in Machine Learning Flashcards

1
Q

Random Variable

A

A variable associated with a population. For example, students could have the random variable “grade”.

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

Marginal Probability

A

P(A)

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

Joint Probability

A

P(A and B)

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

Conditional Probability

A

P(A | B)

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

Joint Probability Distribution

A

A table which demonstrates the probability of the combinations of two events. For example, we could have grade = {A, B, C} and intelligence = {Low, High}. It shows every combination of these two variables.

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

Chain Rule

A

P(A_4, A_3, A_2, A_1) = P(A_4 | A_3, A_2, A_1) . P(A_3 | A_2, A_1) . P(A_2 | A_1) . P(A_1)

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

Independent Random Variables/ Conditional Independence

A

If P(A|B) = P(A) then we know these events are independent.
Same with P(A n B) = P(A)P(B).

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

Probability Queries

A

Given evidence (values of a subset of random variables), compute distribution of another subset of random variables.

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

MAP Queries

A

Maximum a posteriori probability. Also known as MPE (Most probable Explanation), it asks what is the most likely setting of a subset of random variables?

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

Probability Query Parts

A

Evidence -> the subset of variables
Query Variable -> another subset of random variables

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

Marginal Probability Estimation

A

Using the product rule:
P(Y = y_i | E = e) = P(Y = y_i, E = e) / P(E = e).

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

Max

A

The highest point of a function

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

Argmax

A

The x values of a function which give the highest y points.

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

MAP Queries Questions

A

MAP(A,B) = argmax_a,b P(A, B) = argmax_a,b P(B|A)P(A)…

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