Bayes Networks in AI

Estudies4you
Bayees Networks in Artificial Intelligence

BAYES NETWORKS 

It is a structure that is used to represent conditional independence conventionally. 
It is also called as belief network 
It is directed, acyclic graph. The nodes in the graph are labeled by random variables.
The node Ai in the acyclic graph is conditionally independent of any subset of nodes except the descendants of Ai if the parents of Aare given. 
If the parents of the node Ai is .. represented by P(Ai) nd it non-7clescdndents are denoted by a set of node A(Ai). Then,
        I(Ai, A(Ai) | P(Ai)) 
which means that, 
        P(Ai | A(Ai), P(Ai)) = P(Ai | P(Ai)) 
The joint probability of all the nodes in the network can be represented as,
        P({A_1},{A_2},.....{A_k}){\rm{  =  }}\prod\limits_{i = 1}^k {P({A_i}{\rm{ | P(}}{{\rm{A}}_i}))}
where this is got by applying conditional independencies to chain expression. 
These networks are also called as casual networks.

Example:
    Suppose that there are two events which could cause grass to be wet, that is by either the sprinkler or if it's raining. Also, suppose that the rain has a direct influence on sprinkler because the sprinkler is usually not turned on when it rains. Then the situation can be modelled using Bayes network. All the three variables have two possible values, T (for true) and F (for false). 
    The situation can be depicted by the Figure. 3.4.1, 
Bayees Networks in AI,Bayees Networks in Artificial intelligence,examples of Bayees Networks in AI,use of Bayees Networks in AI notes jnuth,AI notes
Fig: A Bayes Network 

The joint probability function is,
    P(G, S, R) P(G | S, P(S | R) P(R) from the chain rule. Here the names of the variables have been abbreviated to G = Grass wet, S = sprinkler turned on and R = Raining. 
It is to be noted that, inorder, to calculate joint probabilities we have to know conditional probability functions of every node which is present in the network and conditioned on its parents. For the nodes without parents prior probabilities of the variables are present which are not conditioned on other nodes. These are shown in the above Figure.

To Top