Presentation is loading. Please wait.

Presentation is loading. Please wait.

P ROBABILISTIC I NFERENCE. A GENDA Conditional probability Independence Intro to Bayesian Networks.

Similar presentations


Presentation on theme: "P ROBABILISTIC I NFERENCE. A GENDA Conditional probability Independence Intro to Bayesian Networks."— Presentation transcript:

1 P ROBABILISTIC I NFERENCE

2 A GENDA Conditional probability Independence Intro to Bayesian Networks

3 R EMEMBER : P ROBABILITY N OTATION L EAVES V ALUES I MPLICIT P(A  B) = P(A)+P(B)- P(A  B) means P(A=a  B=b) = P(A=a) + P(B=b) -P(A=a  B=b) For all a  Val(A) and b  Val(B) A and B are random variables. A=a and B=b are events. Random variables indicate many possible combinations of events

4 C ONDITIONAL P ROBABILITY P(A,B) = P(A|B) P(B) = P(B|A) P(A) P(A|B) is the posterior probability of A given knowledge of B Axiomatic definition: P(A|B) = P(A,B)/P(B)

5 C ONDITIONAL P ROBABILITY P(A|B) is the posterior probability of A given knowledge of B “For each value of b: given that I know B=b, what do I believe about A?” If a new piece of information C arrives, the agent’s new belief (if it obeys the rules of probability) should be P(A|B,C)

6 C ONDITIONAL D ISTRIBUTIONS StateP(state) C, T, P0.108 C, T,  P 0.012 C,  T, P 0.072 C,  T,  P 0.008  C, T, P 0.016  C, T,  P 0.064  C,  T, P 0.144  C,  T,  P 0.576 P(Cavity|Toothache) = P(Cavity  Toothache)/P(Toothache) = (0.108+0.012)/(0.108+0.012+0.016+0.064) = 0.6 Interpretation: After observing Toothache, the patient is no longer an “average” one, and the prior probability (0.2) of Cavity is no longer valid P(Cavity|Toothache) is calculated by keeping the ratios of the probabilities of the 4 cases of Toothache unchanged, and normalizing their sum to 1

7 U PDATING THE B ELIEF S TATE  The patient walks into the dentists door  Let D now observe evidence E: Toothache holds with probability 0.8 (e.g., “the patient says so”)  How should D update its belief state? StateP(state) C, T, P0.108 C, T,  P 0.012 C,  T, P 0.072 C,  T,  P 0.008  C, T, P 0.016  C, T,  P 0.064  C,  T, P 0.144  C,  T,  P 0.576

8 U PDATING THE B ELIEF S TATE P(Toothache|E) = 0.8 We want to compute P(C  T  P|E) = P(C  P|T,E) P(T|E) Since E is not directly related to the cavity or the probe catch, we consider that C and P are independent of E given T, hence: P(C  P|T,E) = P(C  P|T) P(C  T  P|E) = P(C  P  T) P(T|E)/P(T) StateP(state) C, T, P0.108 C, T,  P 0.012 C,  T, P 0.072 C,  T,  P 0.008  C, T, P 0.016  C, T,  P 0.064  C,  T, P 0.144  C,  T,  P 0.576

9 U PDATING THE B ELIEF S TATE P(Toothache|E) = 0.8 We want to compute P(C  T  P|E) = P(C  P|T,E) P(T|E) Since E is not directly related to the cavity or the probe catch, we consider that C and P are independent of E given T, hence: P(C  P|T,E) = P(C  P|T) P(C  T  P|E) = P(C  P  T) P(T|E)/P(T) StateP(state) C, T, P0.108 C, T,  P 0.012 C,  T, P 0.072 C,  T,  P 0.008  C, T, P 0.016  C, T,  P 0.064  C,  T, P 0.144  C,  T,  P 0.576 These rows should be scaled to sum to 0.8 These rows should be scaled to sum to 0.2

10 U PDATING THE B ELIEF S TATE P(Toothache|E) = 0.8 We want to compute P(C  T  P|E) = P(C  P|T,E) P(T|E) Since E is not directly related to the cavity or the probe catch, we consider that C and P are independent of E given T, hence: P(C  P|T,E) = P(C  P|T) P(C  T  P|E) = P(C  P  T) P(T|E)/P(T) StateP(state) C, T, P0.108 0.432 C, T,  P 0.012 0.048 C,  T, P 0.072 0.018 C,  T,  P 0.008 0.002  C, T, P 0.016 0.064  C, T,  P 0.064 0.256  C,  T, P 0.144 0.036  C,  T,  P 0.576 0.144 These rows should be scaled to sum to 0.8 These rows should be scaled to sum to 0.2

11 I SSUES If a state is described by n propositions, then a belief state contains 2 n states (possibly, some have probability 0)  Modeling difficulty: many numbers must be entered in the first place  Computational issue: memory size and time

12 I NDEPENDENCE OF EVENTS Two events A=a and B=b are independent if P(A=a  B=b) = P(A=a) P(B=b) hence P(A=a|B=b) = P(A=a) Knowing B=b doesn’t give you any information about whether A=a is true

13 I NDEPENDENCE OF RANDOM VARIABLES Two random variables A and B are independent if P(A,B) = P(A) P(B) hence P(A|B) = P(A) Knowing B doesn’t give you any information about A [This equality has to hold for all combinations of values that A and B can take on, i.e., all events A=a and B=b are independent]

14 S IGNIFICANCE OF INDEPENDENCE If A and B are independent, then P(A,B) = P(A) P(B) => The joint distribution over A and B can be defined as a product of the distribution of A and the distribution of B Rather than storing a big probability table over all combinations of A and B, store two much smaller probability tables! To compute P(A=a  B=b), just look up P(A=a) and P(B=b) in the individual tables and multiply them together

15 C ONDITIONAL I NDEPENDENCE Two random variables A and B are conditionally independent given C, if P(A, B|C) = P(A|C) P(B|C) hence P(A|B,C) = P(A|C) Once you know C, learning B doesn’t give you any information about A [again, this has to hold for all combinations of values that A,B,C can take on]

16 S IGNIFICANCE OF C ONDITIONAL INDEPENDENCE Consider Rainy, Thunder, and RoadsSlippery Ostensibly, thunder doesn’t have anything directly to do with slippery roads… But they happen together more often when it rains, so they are not independent… So it is reasonable to believe that Thunder and RoadsSlippery are conditionally independent given Rainy So if I want to estimate whether or not I will hear thunder, I don’t need to think about the state of the roads, just whether or not it’s raining!

17 Toothache and PCatch are independent given Cavity, but this relation is hidden in the numbers! [Quiz] Bayesian networks explicitly represent independence among propositions to reduce the number of probabilities defining a belief state StateP(state) C, T, P0.108 C, T,  P 0.012 C,  T, P 0.072 C,  T,  P 0.008  C, T, P 0.016  C, T,  P 0.064  C,  T, P 0.144  C,  T,  P 0.576

18 B AYESIAN N ETWORK Notice that Cavity is the “cause” of both Toothache and PCatch, and represent the causality links explicitly Give the prior probability distribution of Cavity Give the conditional probability tables of Toothache and PCatch Cavity Toothache P(Cavity) 0.2 P(Toothache|c) Cavity  Cavity 0.6 0.1 PCatch P(PCatch|c) Cavity  Cavity 0.9 0.02 5 probabilities, instead of 7 P(C  T  P) = P(T  P|C) P(C) = P(T|C) P(P|C) P(C)

19 C ONDITIONAL P ROBABILITY T ABLES Cavity Toothache P(Cavity) 0.2 P(Toothache|c) Cavity  Cavity 0.6 0.1 PCatch P(PCatch|c) Cavity  Cavity 0.9 0.02 P(t|c)P(  t|c) Cavity  Cavity 0.6 0.1 0.4 0.9 Rows sum to 1 If X takes n values, just store n-1 entries P(C  T  P) = P(T  P|C) P(C) = P(T|C) P(P|C) P(C)

20 S IGNIFICANCE OF B AYESIAN N ETWORKS If we know that variables are conditionally independent, we should be able to decompose joint distribution to take advantage of it Bayesian networks are a way of efficiently factoring the joint distribution into conditional probabilities And also building complex joint distributions from smaller models of probabilistic relationships But… What knowledge does the BN encode about the distribution? How do we use a BN to compute probabilities of variables that we are interested in?

21 B AYES ’ R ULE AND OTHER P ROBABILITY M ANIPULATIONS P(A,B) = P(A|B) P(B) = P(B|A) P(A) P(A|B) = P(B|A) P(A) / P(B) Gives us a way to manipulate distributions e.g. P(B) =  a P(B|A=a) P(A=a) Can derive P(A|B), P(B) using only P(B|A) and P(A)

22 A M ORE C OMPLEX BN BurglaryEarthquake Alarm MaryCallsJohnCalls causes effects Directed acyclic graph Intuitive meaning of arc from x to y: “x has direct influence on y”

23 BEP(A| … ) TTFFTTFF TFTFTFTF 0.95 0.94 0.29 0.001 BurglaryEarthquake Alarm MaryCallsJohnCalls P(B) 0.001 P(E) 0.002 AP(J|…) TFTF 0.90 0.05 AP(M|…) TFTF 0.70 0.01 Size of the CPT for a node with k parents: 2 k A M ORE C OMPLEX BN 10 probabilities, instead of 31

24 W HAT DOES THE BN ENCODE ? Each of the beliefs JohnCalls and MaryCalls is independent of Burglary and Earthquake given Alarm or  Alarm BurglaryEarthquake Alarm MaryCallsJohnCalls For example, John does not observe any burglaries directly P(B  J)  P(B) P(J) P(B  J|A)  P(B|A) P(J|A)

25 W HAT DOES THE BN ENCODE ? The beliefs JohnCalls and MaryCalls are independent given Alarm or  Alarm For instance, the reasons why John and Mary may not call if there is an alarm are unrelated BurglaryEarthquake Alarm MaryCallsJohnCalls P(B  J|A)  P(B|A) P(J|A) P(J  M|A)  P(J|A) P(M|A) P(B  J|A)  P(B|A) P(J|A) P(J  M|A)  P(J|A) P(M|A) A node is independent of its non-descendants given its parents

26 W HAT DOES THE BN ENCODE ? BurglaryEarthquake Alarm MaryCallsJohnCalls A node is independent of its non-descendants given its parents Burglary and Earthquake are independent Burglary and Earthquake are independent The beliefs JohnCalls and MaryCalls are independent given Alarm or  Alarm For instance, the reasons why John and Mary may not call if there is an alarm are unrelated

27 L OCALLY S TRUCTURED W ORLD A world is locally structured (or sparse) if each of its components interacts directly with relatively few other components In a sparse world, the CPTs are small and the BN contains much fewer probabilities than the full joint distribution If the # of entries in each CPT is bounded by a constant, i.e., O(1), then the # of probabilities in a BN is linear in n – the # of propositions – instead of 2 n for the joint distribution

28 E QUATIONS I NVOLVING R ANDOM V ARIABLES G IVE R ISE TO C AUSALITY R ELATIONSHIPS C = A  B C = max(A,B) Constrains joint probability P(A,B,C) Nicely encoded as causality relationship C AB Conditional probability given by equation rather than a CPT

29 N AÏVE B AYES M ODELS P(Cause,Effect 1,…,Effect n ) = P(Cause)  i P(Effect i | Cause) Cause Effect 1 Effect 2 Effect n

30 N AÏVE B AYES C LASSIFIER P(Class,Feature 1,…,Feature n ) = P(Class)  i P(Feature i | Class) Class Feature 1 Feature 2 Feature n P(C|F 1,….,F k ) = P(C,F 1,….,F k )/P(F 1,….,F k ) = 1/Z P(C)  i P(Fi|C) Given features, what class? Spam / Not Spam English / French/ Latin … Word occurrences

31 B UT DOES A BN REPRESENT A BELIEF STATE ? I N OTHER WORDS, CAN WE COMPUTE THE FULL JOINT DISTRIBUTION OF THE PROPOSITIONS FROM IT ?

32 C ALCULATION OF J OINT P ROBABILITY BEP(A| … ) TTFFTTFF TFTFTFTF 0.95 0.94 0.29 0.001 BurglaryEarthquake Alarm MaryCallsJohnCalls P(B) 0.001 P(E) 0.002 AP(J|…) TFTF 0.90 0.05 AP(M|…) TFTF 0.70 0.01 P(J  M  A   B   E) = ??

33 P(J  M  A  B  E) = P(J  M|A,  B,  E)  P(A  B  E) = P(J|A,  B,  E)  P(M|A,  B,  E)  P(A  B  E) (J and M are independent given A) P(J|A,  B,  E) = P(J|A) (J and B and J and E are independent given A) P(M|A,  B,  E) = P(M|A) P(A  B  E) = P(A|  B,  E)  P(  B|  E)  P(  E) = P(A|  B,  E)  P(  B)  P(  E) (B and E are independent) P(J  M  A  B  E) = P(J|A)P(M|A)P(A|  B,  E)P(  B)P(  E) BurglaryEarthquake Alarm MaryCallsJohnCalls

34 C ALCULATION OF J OINT P ROBABILITY BEP(A| … ) TTFFTTFF TFTFTFTF 0.95 0.94 0.29 0.001 BurglaryEarthquake Alarm MaryCallsJohnCalls P(B) 0.001 P(E) 0.002 AP(J|…) TFTF 0.90 0.05 AP(M|…) TFTF 0.70 0.01 P(J  M  A   B   E) = P(J|A)P(M|A)P(A|  B,  E)P(  B)P(  E) = 0.9 x 0.7 x 0.001 x 0.999 x 0.998 = 0.00062

35 C ALCULATION OF J OINT P ROBABILITY BEP(A| … ) TTFFTTFF TFTFTFTF 0.95 0.94 0.29 0.001 BurglaryEarthquake Alarm MaryCallsJohnCalls P(B) 0.001 P(E) 0.002 AP(J|…) TFTF 0.90 0.05 AP(M|…) TFTF 0.70 0.01 P(J  M  A   B   E) = P(J|A)P(M|A)P(A|  B,  E)P(  B)P(  E) = 0.9 x 0.7 x 0.001 x 0.999 x 0.998 = 0.00062 P(x 1  x 2  …  x n ) =  i=1,…,n P(x i |parents(X i ))  full joint distribution table

36 C ALCULATION OF J OINT P ROBABILITY BEP(A| … ) TTFFTTFF TFTFTFTF 0.95 0.94 0.29 0.001 BurglaryEarthquake Alarm MaryCallsJohnCalls P(B) 0.001 P(E) 0.002 AP(J|…) TFTF 0.90 0.05 AP(M|…) TFTF 0.70 0.01 P(x 1  x 2  …  x n ) =  i=1,…,n P(x i |parents(X i ))  full joint distribution table P(j  m  a   b   e) = P(j|a)P(m|a)P(a|  b,  e)P(  b)P(  e) = 0.9 x 0.7 x 0.001 x 0.999 x 0.998 = 0.00062 Since a BN defines the full joint distribution of a set of propositions, it represents a belief state

37 Q UERYING THE BN The BN gives P(T|C) What about P(C|T)? P(Cavity|T=t) = P(Cavity  T=t)/P(T=t) = P(T=t|Cavity) P(Cavity) / P(T=t) [Bayes’ rule] Querying a BN is just applying Bayes’ rule on a larger scale… algorithms next time Cavity Toothache P(C) 0.1 CP(T|C) TFTF 0.4 0.01111

38 M ORE C OMPLICATED S INGLY -C ONNECTED B ELIEF N ET Radio Battery SparkPlugs Starts Gas Moves

39 S OME A PPLICATIONS OF BN Medical diagnosis Troubleshooting of hardware/software systems Fraud/uncollectible debt detection Data mining Analysis of genetic sequences Data interpretation, computer vision, image understanding

40 Region = {Sky, Tree, Grass, Rock} R2 R4 R3 R1 Above

41 BN to evaluate insurance risks

42 P URPOSES OF B AYESIAN N ETWORKS Efficient and intuitive modeling of complex causal interactions Compact representation of joint distributions O(n) rather than O(2 n ) Algorithms for efficient inference with given evidence (more on this next time)


Download ppt "P ROBABILISTIC I NFERENCE. A GENDA Conditional probability Independence Intro to Bayesian Networks."

Similar presentations


Ads by Google