Download 05/05

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Net neutrality law wikipedia , lookup

Transcript
Conditional Independence
As with absolute independence, the
equivalent forms of X and Y being
conditionally independent given Z can also
be used:
P(X|Y, Z) = P(X|Z)
P(Y|X, Z) = P(Y|Z)
and
Example of the Key Property
The following conditional independence holds:
P(MaryCalls |JohnCalls, Alarm, Earthquake, Burglary) =
P(MaryCalls | Alarm)
Conditional Independence Again
A node X is conditionally independent of its
non-descendants given Parents(X).
Markov Blanket of X: set consisting of the
parents of X, the children of X, and the other
parents of the children of X.
X is conditionally independent of all other
nodes in the network given its Markov
Blanket.
Representation Size
At first glance it would appear that the space to
represent a Bayes Net is necessarily quadratic
(possible number of arcs) in the number of random
variables.
But recall we also must represent the CPT of each
node, which in general will have size exponential in
the number of parents of the node.
Representation Size
If we assume n boolean variables the network can
be specified by n2k numbers in contrast to 2n for the
joint.
For example: n=20 and each has at most k = 5,
BN requires 640 numbers but the full joint needs
over a million!
The Basic Inference Task in
Bayesian Networks
Given some observed event (some
assignment of values to a set of evidence
variables), compute the posterior probability
distribution over a set of query variables.
Variables that are neither evidence variables
nor query variables are hidden variables.
Most common query: P(X|e).
Generality of Approach
A Bayes Net is flexible enough that any
variable can be the query variables, and any
variables can be evidence variables.
Algorithms we consider are easily extended
to handle queries with multiple query
variables.
Example Query
P(Burglary | JohnCalls=true,
MaryCalls=true)
=
<0.284,0.716>
How can we compute such answers?
One approach is to compute entire full joint
distribution represented by the network, and
use our earlier algorithm. But this would
defeat the entire purpose of Bayes Nets.
Inference By Enumeration
P( X | e) =   P( X , e, y)
y JOINTASK procedure based
Recall the ENUMERATE
on the preceding equation, which computed
the answers to queries given the full joint
represented as a table.
We will modify ENUMERATEJOINTASK to use the
Bayes Net instead of the table. Need only
get desired table entries using Bayes Net.
Getting a Full Joint Table Entry
from a Bayes Net
n

Recall: P( x1,...,xn ) =
P( xi|Parents(Xi))
i=1
A table entry for X1 = x1,…,Xn
= xn is simply
P(x1,…,xn) which can be calculated based on the
Bayes Net semantics above.
Therefore the CPTs provide a decomposed
representation of the joint.
Recall example:
P(a,j,m,b,e) = P( j|a ) P(m|a )
P(a|b,e)P( b)P( e)
Example of Full Procedure
Query: P(Burglary | JohnCalls=true,
MaryCalls=true)
P(B|j,m) =    P( B,e,a,j,m)
e
a
Solve without the normalization constant for
both B = true and B = false, and then
compute the normalization constant and the
final probabilities.
Example (Continued)
P(b|j,m) = 
  P(b)P(e)P(a|b,e)P( j|a)P(m|a)
e
 P(b)
a
 P(e)  P(a|b,e)P( j|a)P(m|a).
e
Go to
a
CPTs in Bayes Net to pull out numbers (Fig. 16.8).
Repeat with b instead of b throughout. Resulting
numbers are 0.000592 and 0.001494 respectively.
Example (Continued)
Normalizing: (0.000592 + 0.001494) = 1.0
 = 1.0/0.002086 = 479
P(B|j,m) = <0.284 , 0.716>