Presentation is loading. Please wait.

Presentation is loading. Please wait.

Bayesian Networks Tamara Berg CS 590-133 Artificial Intelligence Many slides throughout the course adapted from Svetlana Lazebnik, Dan Klein, Stuart Russell,

Similar presentations


Presentation on theme: "Bayesian Networks Tamara Berg CS 590-133 Artificial Intelligence Many slides throughout the course adapted from Svetlana Lazebnik, Dan Klein, Stuart Russell,"— Presentation transcript:

1 Bayesian Networks Tamara Berg CS 590-133 Artificial Intelligence Many slides throughout the course adapted from Svetlana Lazebnik, Dan Klein, Stuart Russell, Andrew Moore, Percy Liang, Luke Zettlemoyer, Rob Pless, Killian Weinberger, Deva Ramanan 1

2 Announcements HW3 will be released tonight –Written questions only (no programming) –Due Tuesday, March 18, 11:59pm

3 Review: Probability Random variables, events Axioms of probability Atomic events Joint and marginal probability distributions Conditional probability distributions Product rule Independence and conditional independence Inference

4 Bayesian decision making Suppose the agent has to make decisions about the value of an unobserved query variable X based on the values of an observed evidence variable E Inference problem: given some evidence E = e, what is P(X | e)? Learning problem: estimate the parameters of the probabilistic model P(X | E) given training samples {(x 1,e 1 ), …, (x n,e n )}

5 Bayesian networks (BNs)  A type of graphical model  A BN states conditional independence relationships between random variables  Compact specification of full joint distributions

6

7 Random Variables Random variables be a realization ofLet

8 Random Variables Random variables be a realization ofLet A random variable is some aspect of the world about which we (may) have uncertainty. Random variables can be: Binary (e.g. {true,false}, {spam/ham}), Take on a discrete set of values (e.g. {Spring, Summer, Fall, Winter}), Or be continuous (e.g. [0 1]).

9 Joint Probability Distribution Random variables Joint Probability Distribution: be a realization ofLet Also written Gives a real value for all possible assignments.

10 Queries Joint Probability Distribution: Also written Given a joint distribution, we can reason about unobserved variables given observations (evidence): Stuff you care aboutStuff you already know

11 Representation One way to represent the joint probability distribution for discrete is as an n-dimensional table, each cell containing the probability for a setting of X. This would have entries if each ranges over values. Joint Probability Distribution: Also written Graphical Models!

12 Representation Graphical models represent joint probability distributions more economically, using a set of “local” relationships among variables. Joint Probability Distribution: Also written

13 Graphical Models Graphical models offer several useful properties: 1. They provide a simple way to visualize the structure of a probabilistic model and can be used to design and motivate new models. 2. Insights into the properties of the model, including conditional independence properties, can be obtained by inspection of the graph. 3. Complex computations, required to perform inference and learning in sophisticated models, can be expressed in terms of graphical manipulations. from Chris Bishop

14 Main kinds of models Undirected (also called Markov Random Fields) - links express constraints between variables. Directed (also called Bayesian Networks) - have a notion of causality -- one can regard an arc from A to B as indicating that A "causes" B.

15 Syntax  Directed Acyclic Graph (DAG)  Nodes: random variables  Can be assigned (observed) or unassigned (unobserved)  Arcs: interactions  An arrow from one variable to another indicates direct influence  Encode conditional independence  Weather is independent of the other variables  Toothache and Catch are conditionally independent given Cavity  Must form a directed, acyclic graph Weather Cavity ToothacheCatch

16 Example: N independent coin flips  Complete independence: no interactions X1X2Xn …

17 Example: Naïve Bayes document model  Random variables:  X: document class  W1, …, Wn: words in the document W1W2Wn … X

18 Example: Burglar Alarm  I have a burglar alarm that is sometimes set off by minor earthquakes. My two neighbors, John and Mary, promise to call me at work if they hear the alarm  Example inference task: suppose Mary calls and John doesn’t call. What is the probability of a burglary?  What are the random variables?  Burglary, Earthquake, Alarm, JohnCalls, MaryCalls  What are the direct influence relationships?  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

19 Example: Burglar Alarm What are the model parameters? What does this mean?

20 Bayes Nets Directed Graph, G = (X,E) Nodes Edges Each node is associated with a random variable

21 Example

22 Joint Distribution By Chain Rule (using the usual arithmetic ordering)

23 Directed Graphical Models Directed Graph, G = (X,E) Nodes Edges Each node is associated with a random variable Definition of joint probability in a graphical model: where are the parents of

24 Example Joint Probability:

25 Conditional Independence Independence: Conditional Independence: Or,

26 Conditional Independence By Chain Rule (using the usual arithmetic ordering) Missing variables in the local conditional probability functions correspond to missing edges in the underlying graph. Removing an edge into node i eliminates an argument from the conditional probability factor Joint distribution from the example graph:

27 Semantics  A BN represents a full joint distribution in a compact way.  We only need to specify a conditional probability distribution for each node given its parents: P (X | Parents(X)) Z1Z2Zn X … P (X | Z1, …, Zn)

28 Example 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 1 0 0 1 01 0 1

29 Example: Alarm Network Burglary Earthqk Alarm John calls Mary calls BP(B) +b0.001 bb 0.999 EP(E) +e0.002 ee 0.998 BEAP(A|B,E) +b+e+a0.95 +b+e aa 0.05 +b ee +a0.94 +b ee aa 0.06 bb +e+a0.29 bb +e aa 0.71 bb ee +a0.001 bb ee aa 0.999 AJP(J|A) +a+j0.9 +a jj 0.1 aa +j0.05 aa jj 0.95 AMP(M|A) +a+m0.7 +a mm 0.3 aa +m0.01 aa mm 0.99

30 Size of a Bayes’ Net How big is a joint distribution over N Boolean variables? 2N2N How big is an N-node net if nodes have up to k parents? O(N * 2 k+1 ) Both give you the power to calculate BNs: Huge space savings! Also easier to elicit local CPTs Also turns out to be faster to answer queries (coming) 30

31 The joint probability distribution  For example, P(j, m, a, ¬b, ¬e) = P(¬b) P(¬e) P(a | ¬b, ¬e) P(j | a) P(m | a)

32 The joint probability distribution  Key property: each node is conditionally independent of its non-descendents given its parents  Suppose the nodes X1, …, Xn are sorted in topological order  For each node Xi, we know P(Xi | Parents(Xi))  The joint distribution P(X1, …, Xn): where are the parents of

33 Independence in a BN Important question about a BN: –Are two nodes independent given certain evidence? –If yes, can prove using algebra (tedious in general) –If no, can prove with a counter example –Example: –Question: are X and Z necessarily independent? Answer: no. Example: low pressure causes rain, which causes traffic. X can influence Z, Z can influence X (via Y) Addendum: they could be independent: how? XYZ

34 Independence Key properties: a) Each node is conditionally independent of its non-descendants given its parents b) A node is conditionally independent of all other nodes in the graph given it’s Markov blanket (it’s parents, children, and children’s other parents)

35 Moral Graphs Equivalent undirected form of a directed acyclic graph

36 Independence in a BN Important question about a BN: –Are two nodes independent given certain evidence? –If yes, can prove using algebra (tedious in general) –If no, can prove with a counter example –Example: –Question: are X and Z necessarily independent? Answer: no. Example: low pressure causes rain, which causes traffic. X can influence Z, Z can influence X (via Y) Addendum: they could be independent: how? XYZ

37 Causal Chains This configuration is a “causal chain” –Is Z independent of X given Y? –Evidence along the chain “blocks” the influence XYZ Yes! X: Project due Y: No office hours Z: Students panic 37

38 Common Cause Another basic configuration: two effects of the same cause –Are X and Z independent? –Are X and Z independent given Y? –Observing the cause blocks influence between effects. X Y Z Yes! Y: Homework due X: Full attendance Z: Students sleepy 38

39 Common Effect Last configuration: two causes of one effect (v-structures) –Are X and Z independent? Yes: the ballgame and the rain cause traffic, but they are not correlated Still need to prove they must be (try it!) –Are X and Z independent given Y? No: seeing traffic puts the rain and the ballgame in competition as explanation –This is backwards from the other cases Observing an effect activates influence between possible causes. X Y Z X: Raining Z: Ballgame Y: Traffic 39

40 The General Case Any complex example can be analyzed using these three canonical cases General question: in a given BN, are two variables independent (given evidence)? Solution: analyze the graph 40 Causal Chain Common Cause (Unobserved) Common Effect

41 Reachability (D-Separation) Question: Are X and Y conditionally independent given evidence vars {Z}? –Yes, if X and Y “separated” by Z –Look for active paths from X to Y –No active paths = independence! A path is active if each triple is active: –Causal chain A  B  C where B is unobserved (either direction) –Common cause A  B  C where B is unobserved –Common effect (aka v-structure) A  B  C where B or one of its descendants is observed All it takes to block a path is a single inactive segment Active TriplesInactive Triples

42 Bayes Ball Shade all observed nodes. Place balls at the starting node, let them bounce around according to some rules, and ask if any of the balls reach any of the goal node. We need to know what happens when a ball arrives at a node on its way to the goal node. 42

43 43

44 Example Yes 44 R T B T’T’

45 Example R T B D L T’T’ Yes 45

46 Example Variables: –R: Raining –T: Traffic –D: Roof drips –S: I’m sad Questions: T S D R Yes 46

47 Constructing Bayesian networks 1. Choose an ordering of variables X1, …, Xn 2. For i = 1 to n  add Xi to the network  select parents from X1, …,Xi-1 such that P(Xi | Parents(Xi)) = P(Xi | X1,... Xi-1)

48  Suppose we choose the ordering M, J, A, B, E P(J | M) = P(J)? Example

49  Suppose we choose the ordering M, J, A, B, E P(J | M) = P(J)?No Example

50  Suppose we choose the ordering M, J, A, B, E P(J | M) = P(J)?No P(A | J, M) = P(A)? P(A | J, M) = P(A | J)? P(A | J, M) = P(A | M)? Example

51  Suppose we choose the ordering M, J, A, B, E P(J | M) = P(J)?No P(A | J, M) = P(A)?No P(A | J, M) = P(A | J)?No P(A | J, M) = P(A | M)?No Example

52  Suppose we choose the ordering M, J, A, B, E P(J | M) = P(J)?No P(A | J, M) = P(A)?No P(A | J, M) = P(A | J)?No P(A | J, M) = P(A | M)?No P(B | A, J, M) = P(B)? P(B | A, J, M) = P(B | A)? Example

53  Suppose we choose the ordering M, J, A, B, E P(J | M) = P(J)?No P(A | J, M) = P(A)?No P(A | J, M) = P(A | J)?No P(A | J, M) = P(A | M)?No P(B | A, J, M) = P(B)? No P(B | A, J, M) = P(B | A)?Yes Example

54  Suppose we choose the ordering M, J, A, B, E P(J | M) = P(J)?No P(A | J, M) = P(A)?No P(A | J, M) = P(A | J)?No P(A | J, M) = P(A | M)?No P(B | A, J, M) = P(B)? No P(B | A, J, M) = P(B | A)?Yes P(E | B, A,J, M) = P(E)? P(E | B, A, J, M) = P(E | A, B)? Example

55  Suppose we choose the ordering M, J, A, B, E P(J | M) = P(J)?No P(A | J, M) = P(A)?No P(A | J, M) = P(A | J)?No P(A | J, M) = P(A | M)?No P(B | A, J, M) = P(B)? No P(B | A, J, M) = P(B | A)?Yes P(E | B, A,J, M) = P(E)?No P(E | B, A, J, M) = P(E | A, B)?Yes Example

56 Example contd.  Deciding conditional independence is hard in noncausal directions  The causal direction seems much more natural, but is not mandatory  Network is less compact

57 Summary  Bayesian networks provide a natural representation for (causally induced) conditional independence  Topology + conditional probability tables  Generally easy for domain experts to construct


Download ppt "Bayesian Networks Tamara Berg CS 590-133 Artificial Intelligence Many slides throughout the course adapted from Svetlana Lazebnik, Dan Klein, Stuart Russell,"

Similar presentations


Ads by Google