Presentation is loading. Please wait.

Presentation is loading. Please wait.

Bayesian Networks Russell and Norvig: Chapter 14 CMCS424 Fall 2003 based on material from Jean-Claude Latombe, Daphne Koller and Nir Friedman.

Similar presentations


Presentation on theme: "Bayesian Networks Russell and Norvig: Chapter 14 CMCS424 Fall 2003 based on material from Jean-Claude Latombe, Daphne Koller and Nir Friedman."— Presentation transcript:

1 Bayesian Networks Russell and Norvig: Chapter 14 CMCS424 Fall 2003 based on material from Jean-Claude Latombe, Daphne Koller and Nir Friedman

2 Probabilistic Agent environment agent ? sensors actuators I believe that the sun will still exist tomorrow with probability 0.999999 and that it will be a sunny with probability 0.6

3 Problem At a certain time t, the KB of an agent is some collection of beliefs At time t the agent’s sensors make an observation that changes the strength of one of its beliefs How should the agent update the strength of its other beliefs?

4 Purpose of Bayesian Networks Facilitate the description of a collection of beliefs by making explicit causality relations and conditional independence among beliefs Provide a more efficient way (than by using joint distribution tables) to update belief strengths when new evidence is observed

5 Other Names Belief networks Probabilistic networks Causal networks

6 Bayesian Networks A simple, graphical notation for conditional independence assertions resulting in a compact representation for the full joint distribution Syntax: a set of nodes, one per variable a directed, acyclic graph (link = ‘direct influences’) a conditional distribution for each node given its parents: P(X i |Parents(X i ))

7 Example Cavity Toothache Catch Weather Topology of network encodes conditional independence assertions: Weather is independent of other variables Toothache and Catch are independent given Cavity

8 Example I’m at work, neighbor John calls to say my alarm is ringing, but neighbor Mary doesn’t call. Sometime it’s set off by a minor earthquake. Is there a burglar? Network topology reflects “causal” knowledge: - A burglar can set the alarm off - An earthquake can set the alarm off - The alarm can cause Mary to call - The alarm can cause John to call Variables: Burglar, Earthquake, Alarm, JohnCalls, MaryCalls

9 A Simple Belief Network BurglaryEarthquake Alarm MaryCallsJohnCalls causes effects Directed acyclic graph (DAG) Intuitive meaning of arrow from x to y: “x has direct influence on y” Nodes are random variables

10 Assigning Probabilities to Roots BurglaryEarthquake Alarm MaryCallsJohnCalls P(B) 0.001 P(E) 0.002

11 Conditional Probability Tables BEP(A|B,E) TTFFTTFF TFTFTFTF 0.95 0.94 0.29 0.001 BurglaryEarthquake Alarm MaryCallsJohnCalls P(B) 0.001 P(E) 0.002 Size of the CPT for a node with k parents: ?

12 Conditional Probability Tables BEP(A|B,E) TTFFTTFF TFTFTFTF 0.95 0.94 0.29 0.001 BurglaryEarthquake Alarm MaryCallsJohnCalls P(B) 0.001 P(E) 0.002 AP(J|A) TFTF 0.90 0.05 AP(M|A) TFTF 0.70 0.01

13 What the BN Means 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|A) TFTF 0.90 0.05 AP(M|A) TFTF 0.70 0.01 P(x 1,x 2,…,x n ) =  i=1,…,n P(x i |Parents(X i ))

14 Calculation of Joint Probability 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

15 What The BN Encodes Each of the beliefs JohnCalls and MaryCalls is independent of Burglary and Earthquake given Alarm or  Alarm The beliefs JohnCalls and MaryCalls are independent given Alarm or  Alarm BurglaryEarthquake Alarm MaryCallsJohnCalls For example, John does not observe any burglaries directly

16 What The BN Encodes Each of the beliefs JohnCalls and MaryCalls is independent of Burglary and Earthquake given Alarm or  Alarm The beliefs JohnCalls and MaryCalls are independent given Alarm or  Alarm BurglaryEarthquake Alarm MaryCallsJohnCalls For instance, the reasons why John and Mary may not call if there is an alarm are unrelated Note that these reasons could be other beliefs in the network. The probabilities summarize these non-explicit beliefs

17 Structure of BN The relation: P(x 1,x 2,…,x n ) =  i=1,…,n P(x i |Parents(X i )) means that each belief is independent of its predecessors in the BN given its parents Said otherwise, the parents of a belief X i are all the beliefs that “directly influence” X i Usually (but not always) the parents of X i are its causes and X i is the effect of these causes E.g., JohnCalls is influenced by Burglary, but not directly. JohnCalls is directly influenced by Alarm

18 Construction of BN Choose the relevant sentences (random variables) that describe the domain Select an ordering X 1,…,X n, so that all the beliefs that directly influence X i are before X i For j=1,…,n do: Add a node in the network labeled by X j Connect the node of its parents to X j Define the CPT of X j The ordering guarantees that the BN will have no cycles

19 Markov Assumption We now make this independence assumption more precise for directed acyclic graphs (DAGs) Each random variable X, is independent of its non- descendents, given its parents Pa(X) Formally, I(X; NonDesc(X) | Pa(X)) Descendent Ancestor Parent Non-descendent X Y1Y1 Y2Y2

20 Set E of evidence variables that are observed, e.g., {JohnCalls,MaryCalls} Query variable X, e.g., Burglary, for which we would like to know the posterior probability distribution P(X|E) Distribution conditional to the observations made Inference In BN ?TT P(B| … )MJ

21 Inference Patterns BurglaryEarthquake Alarm MaryCallsJohnCalls Diagnostic BurglaryEarthquake Alarm MaryCallsJohnCalls Causal BurglaryEarthquake Alarm MaryCallsJohnCalls Intercausal BurglaryEarthquake Alarm MaryCallsJohnCalls Mixed Basic use of a BN: Given new observations, compute the new strengths of some (or all) beliefs Other use: Given the strength of a belief, which observation should we gather to make the greatest change in this belief’s strength

22 Singly Connected BN A BN is singly connected if there is at most one undirected path between any two nodes BurglaryEarthquake Alarm MaryCallsJohnCalls is singly connected is not singly connected is singly connected

23 Types Of Nodes On A Path Radio Battery SparkPlugs Starts Gas Moves linear converging diverging

24 Independence Relations In BN Radio Battery SparkPlugs Starts Gas Moves linear converging diverging Given a set E of evidence nodes, two beliefs connected by an undirected path are independent if one of the following three conditions holds: 1. A node on the path is linear and in E 2. A node on the path is diverging and in E 3. A node on the path is converging and neither this node, nor any descendant is in E

25 Independence Relations In BN Radio Battery SparkPlugs Starts Gas Moves linear converging diverging Given a set E of evidence nodes, two beliefs connected by an undirected path are independent if one of the following three conditions holds: 1. A node on the path is linear and in E 2. A node on the path is diverging and in E 3. A node on the path is converging and neither this node, nor any descendant is in E Gas and Radio are independent given evidence on SparkPlugs

26 Independence Relations In BN Radio Battery SparkPlugs Starts Gas Moves linear converging diverging Given a set E of evidence nodes, two beliefs connected by an undirected path are independent if one of the following three conditions holds: 1. A node on the path is linear and in E 2. A node on the path is diverging and in E 3. A node on the path is converging and neither this node, nor any descendant is in E Gas and Radio are independent given evidence on Battery

27 Independence Relations In BN Radio Battery SparkPlugs Starts Gas Moves linear converging diverging Given a set E of evidence nodes, two beliefs connected by an undirected path are independent if one of the following three conditions holds: 1. A node on the path is linear and in E 2. A node on the path is diverging and in E 3. A node on the path is converging and neither this node, nor any descendant is in E Gas and Radio are independent given no evidence, but they are dependent given evidence on Starts or Moves

28 BN Inference Simplest Case: BA P(B) = P(a)P(B|a) + P(~a)P(B|~a) BAC P(C) = ???

29 BN Inference Chain: X2X2 X1X1 XnXn … What is time complexity to compute P(X n )? What is time complexity if we computed the full joint?

30 Inference Ex. 2 Rain Sprinkler Cloudy WetGrass Algorithm is computing not individual probabilities, but entire tables Two ideas crucial to avoiding exponential blowup: because of the structure of the BN, some subexpression in the joint depend only on a small number of variable By computing them once and caching the result, we can avoid generating them exponentially many times

31 Variable Elimination General idea: Write query in the form Iteratively Move all irrelevant terms outside of innermost sum Perform innermost sum, getting a new term Insert the new term into the product

32 A More Complex Example Visit to Asia Smoking Lung Cancer Tuberculosis Abnormality in Chest Bronchitis X-Ray Dyspnea “Asia” network:

33 V S L T A B XD We want to compute P(d) Need to eliminate: v,s,x,t,l,a,b Initial factors

34 V S L T A B XD We want to compute P(d) Need to eliminate: v,s,x,t,l,a,b Initial factors Eliminate: v Note: f v (t) = P(t) In general, result of elimination is not necessarily a probability term Compute:

35 V S L T A B XD We want to compute P(d) Need to eliminate: s,x,t,l,a,b Initial factors Eliminate: s Summing on s results in a factor with two arguments f s (b,l) In general, result of elimination may be a function of several variables Compute:

36 V S L T A B XD We want to compute P(d) Need to eliminate: x,t,l,a,b Initial factors Eliminate: x Note: f x (a) = 1 for all values of a !! Compute:

37 V S L T A B XD We want to compute P(d) Need to eliminate: t,l,a,b Initial factors Eliminate: t Compute:

38 V S L T A B XD We want to compute P(d) Need to eliminate: l,a,b Initial factors Eliminate: l Compute:

39 V S L T A B XD We want to compute P(d) Need to eliminate: b Initial factors Eliminate: a,b Compute:

40 Variable Elimination We now understand variable elimination as a sequence of rewriting operations Actual computation is done in elimination step Computation depends on order of elimination

41 Dealing with evidence How do we deal with evidence? Suppose get evidence V = t, S = f, D = t We want to compute P(L, V = t, S = f, D = t) V S L T A B XD

42 Dealing with Evidence We start by writing the factors: Since we know that V = t, we don’t need to eliminate V Instead, we can replace the factors P(V) and P(T|V) with These “select” the appropriate parts of the original factors given the evidence Note that f p(V) is a constant, and thus does not appear in elimination of other variables V S L T A B XD

43 Dealing with Evidence Given evidence V = t, S = f, D = t Compute P(L, V = t, S = f, D = t ) Initial factors, after setting evidence: V S L T A B XD

44 Given evidence V = t, S = f, D = t Compute P(L, V = t, S = f, D = t ) Initial factors, after setting evidence: Eliminating x, we get V S L T A B XD Dealing with Evidence

45 Given evidence V = t, S = f, D = t Compute P(L, V = t, S = f, D = t ) Initial factors, after setting evidence: Eliminating x, we get Eliminating t, we get V S L T A B XD

46 Dealing with Evidence Given evidence V = t, S = f, D = t Compute P(L, V = t, S = f, D = t ) Initial factors, after setting evidence: Eliminating x, we get Eliminating t, we get Eliminating a, we get V S L T A B XD

47 Dealing with Evidence Given evidence V = t, S = f, D = t Compute P(L, V = t, S = f, D = t ) Initial factors, after setting evidence: Eliminating x, we get Eliminating t, we get Eliminating a, we get Eliminating b, we get V S L T A B XD

48 Variable Elimination Algorithm Let X1,…, Xm be an ordering on the non-query variables For I = m, …, 1 Leave in the summation for Xi only factors mentioning Xi Multiply the factors, getting a factor that contains a number for each value of the variables mentioned, including Xi Sum out Xi, getting a factor f that contains a number for each value of the variables mentioned, not including Xi Replace the multiplied factor in the summation

49 Complexity of variable elimination Suppose in one elimination step we compute This requires multiplications For each value for x, y 1, …, y k, we do m multiplications additions For each value of y 1, …, y k, we do |Val(X)| additions Complexity is exponential in number of variables in the intermediate factor!

50 Understanding Variable Elimination We want to select “good” elimination orderings that reduce complexity This can be done be examining a graph theoretic property of the “induced” graph; we will not cover this in class. This reduces the problem of finding good ordering to graph-theoretic operation that is well-understood—unfortunately computing it is NP-hard!

51 Approaches to inference Exact inference Inference in Simple Chains Variable elimination Clustering / join tree algorithms Approximate inference Stochastic simulation / sampling methods Markov chain Monte Carlo methods

52 Stochastic simulation - direct Suppose you are given values for some subset of the variables, G, and want to infer values for unknown variables, U Randomly generate a very large number of instantiations from the BN Generate instantiations for all variables – start at root variables and work your way “forward” Rejection Sampling: keep those instantiations that are consistent with the values for G Use the frequency of values for U to get estimated probabilities Accuracy of the results depends on the size of the sample (asymptotically approaches exact results)

53 Direct Stochastic Simulation Rain Sprinkler Cloudy WetGrass 1. Repeat N times: 1.1. Guess Cloudy at random 1.2. For each guess of Cloudy, guess Sprinkler and Rain, then WetGrass 2. Compute the ratio of the # runs where WetGrass and Cloudy are True over the # runs where Cloudy is True P(WetGrass|Cloudy)? P(WetGrass|Cloudy) = P(WetGrass  Cloudy) / P(Cloudy)

54 Exercise: Direct sampling smartstudy preparedfair pass p(smart)=.8 p(study)=.6 p(fair)=.9 p(prep|…)smart  smart study.9.7  study.5.1 p(pass|…) smart  smart prep  prep prep  prep fair.9.7.2  fair.1 Topological order = …? Random number generator:.35,.76,.51,.44,.08,.28,.03,.92,.02,.42

55 Likelihood weighting Idea: Don’t generate samples that need to be rejected in the first place! Sample only from the unknown variables Z Weight each sample according to the likelihood that it would occur, given the evidence E

56 Markov chain Monte Carlo algorithm So called because Markov chain – each instance generated in the sample is dependent on the previous instance Monte Carlo – statistical sampling method Perform a random walk through variable assignment space, collecting statistics as you go Start with a random instantiation, consistent with evidence variables At each step, for some nonevidence variable, randomly sample its value, consistent with the other current assignments Given enough samples, MCMC gives an accurate estimate of the true distribution of values

57 Applications http://excalibur.brc.uconn.edu/~baynet /researchApps.html Medical diagnosis, e.g., lymph-node deseases Fraud/uncollectible debt detection Troubleshooting of hardware/software systems


Download ppt "Bayesian Networks Russell and Norvig: Chapter 14 CMCS424 Fall 2003 based on material from Jean-Claude Latombe, Daphne Koller and Nir Friedman."

Similar presentations


Ads by Google