×

Dynamic Bayesian Networks

DBN is a temporary network model that is used to relate variables to each other for adjacent time steps. Each part of a Dynamic Bayesian Network can have any number of Xivariables for states representation, and evidence variables Et. A DBN is a type of Bayesian networks. Dynamic Bayesian Networks were developed by Paul Dagmun at Standford’s University in the early 1990s.

How is DBN different from HMM?

A Hidden Markov Model (HMM) can be represented as a Dynamic Bayesian Network with a single state variable and evidence variable. On the other hand, a DBN can be converted into a HMM. The difference between the two is that, by decomposing the complex system state into its constituent variables, DBN take advantage of sparseness in the temporal probability model. Thus, the relationship between HMM and DBN is analogues.

Drawbacks of Hidden Markov Model

  • HMM requires more amount of space
  • The transition matrix is huge, which leads to an expensive Markov model.
  • HMM is not used to solve large problems as it is not possible to learn so many parameters.

Building DBN

There are following three kinds of information which need to be specified while building Dynamic Bayesian Networks:

  1. The prior distribution over the state variables P(X0)
  2. The transition model P(Xt+1|Xt)
  3. The sensor model P(Et|Xt)

In order to specify both transition and sensor models, the topology of the connections occurs between the successive slices, and between the evidence and state variable. It is because it is assumed that the two models are stationary.

Inference in DBN

There are two types of inference discussed in Dynamic Bayesian Networks:

  • Exact Inference in DBN
  • Approximate inference in DBN

Exact inference in DBN

A full Bayesian network of a DBN can be constructed by replicating the slices to accomplish the observations. This technique is known as Unrolling.           A naïve application would not be efficient because inference time increases with new observations. Instead, we can use an incremental approach by remembering only two slices.

Approximate Inference in DBN

With the exact inference methods, there is a possibility to use Approximate Inference methods too. Approximate methods such as likelihood weighting, Markov chain Monte Carlo, are the easily adaptable method to DBN context. The likelihood method works by sampling the nonviolence nodes in a topological manner. It is easy to apply the likelihood method directly over an unrolled DBN but leads to high time and more space requirement problems. It is because the standard algorithm runs each sample, all the way through a network. Another method can be to run all N samples together via DBN, where one slice executes at a time. Therefore, we use different innovations that best gives the best method:

Firstly, use the samples themselves as an approximate representation of the distribution of the current state.

Secondly, focusing on the set of samples on high-probability regions of the state space.

Thus, to do so, we use a family of algorithms known as Particle filtering. The working of the algorithm is:

  1. A population of initial-states N samples is created by sampling from the prior distribution, P(X0).
  2. Update cycle is repeated everytime as:
  3. Propagating each sample in the forward direction by sampling the next state value Xt+1, where the current state Xt is given, based over the transition model.
  4. The samples are weighted by the likelihood assigned to the new evidence.
  5. Resample the population to generate a new population of N samples.

Let’s see the Particle filtering algorithm:

function PARTICLE-FILTER(e, N, dbn) returns a set of samples for next time step

inputs: e, the new incoming evidence

N, number of samples to be maintained

dbn, a Dynamic Bayesian Network with prior P(X0), transition model P(X1|X0), sensor model P(E1|X1)

persistent: S, vector of samples of size N, initially generated from P(X0)

local variables: W, vector of weights of size N

for i = 1 to N do

S[i ]?sample from P(X1 | X0 = S[i ]) /* step 1 */

W[i ]?P(e | X1 = S[i]) /* step 2 */

S ?WEIGHTED-SAMPLE-WITH-REPLACEMENT(N, S,W) /* step 3 */

return S

Thus, particle filtering is consistent as well as an efficient technique because the algorithm maintains a well approximation to the true posterior by using a constant number of samples.


Related Topics

Artificial Satellites

Many objects like stars, satellites and the moon are visible in the night sky. Satellites are objects revolving around the planet or a more significant object. Moon is the most...

6 minutes read.

Utility Functions in Artificial Intelligence

The agents use the utility theory for making decisions. It is the mapping from lotteries to the real numbers. An agent is supposed to have various preferences and can choose the one...

3 minutes read.

Dynamic Routing

Dynamic Routing Dynamic routing is used to update the routing table and find networks on the routers. It is easier than static routing and default routing, but it is more expensive in terms of...

3 minutes read.

Reinforcement Learning in AI

Reinforcement Learning in AI Reinforcement LearningMarkov’s Decision ProcessQ leaningGreedy Decision MakingNIM GameNIM Game Implementation with Python Reinforcement Learning Reinforcement Learning is about learning from experience, where agents are given a set of rewards...

15 minutes read.

Top 7 Artificial Intelligence and Machine Learning trends for 2024

Artificial Intelligence is the ability of machines to perform the same function as human beings, like problem-solving, learning, reasoning and recognizing. Machine Learning is another branch of Computer Science and...

6 minutes read.

Propositional Logic

It is a branch of logic which is also known as statement logic, sentential logic, zeroth-order logic, and many more. It works with the propositions and its logical connectivities. It deals with the...

5 minutes read.

Inference in First-order Logic

Inference in First-order Logic While defining inference, we mean to define effective procedures for answering questions in FOPL. FOPL offers the following inference rules: Inference rules for quantifiersUniversal Instantiation (UI): In this, we can infer any sentence by...

5 minutes read.

Adversarial Search in Artificial Intelligence

AI Adversarial search: Adversarial search is a game-playing technique where the agents are surrounded by a competitive environment. A conflicting goal is given to the agents (multiagent). These agents compete...

3 minutes read.

Minimax Strategy

In artificial intelligence, minimax is a decision-making strategy under game theory, which is used to minimize the losing chances in a game and to maximize the winning chances. This strategy is also known...

3 minutes read.

Forward Chaining in AI : Artificial Intelligence

Forward Chaining is the process which works on the basis of available data to make certain decisions. Forward chaining is the process of chaining data in the forward direction. In forward chaining, we...

4 minutes read.

Quantifying Uncertainty

The concept of quantifying uncertainty relies on how an agent can keep away uncertainty with a degree of belief. The term uncertainty refers to that situation or information which is either unknown or...

5 minutes read.

Uninformed Search Strategies - Artificial Intelligence

Breadth-first search (BFS) It is a simple search strategy where the root node is expanded first, then covering all other successors of the root node, further move to expand the next...

8 minutes read.

Artificial Intelligence Tutorial | AI Tutorial

Today, Artificial Intelligence (AI) has become the norm of how humans communicate with and understand technology. Even though you've been hearing this buzzword now and then, do you know what...

6 minutes read.

Differences in Artificial Intelligence

Difference between Intelligence and Artificial Intelligence Intelligence Artificial Intelligence It is a natural process or quality given to human beings. ...

3 minutes read.

Intelligent Agents | Agents in AI

What is an Agent? An agent can be viewed as anything that perceives its environment through sensors and acts upon that environment through actuators. For example, human being perceives their surroundings through...

8 minutes read.

Dynamic Bayesian Networks

DBN is a temporary network model that is used to relate variables to each other for adjacent time steps. Each part of a Dynamic Bayesian Network can have any number of Xivariables for...

3 minutes read.

Knowledge Representation in AI

In this section, we will understand how to represent the knowledge in the form which could be understood by the knowledge-based agents. The knowledge that is stored in the system is related to...

5 minutes read.

The Wumpus World

The Wumpus world is a game playing which provides an environment to the knowledge-based agent to showcase its stored knowledge. It was developed by Gregory Yob in 1973. About the game:  It...

3 minutes read.

Alpha-beta Pruning | Artificial Intelligence

Alpha-beta pruning is an advance version of MINIMAX algorithm. The drawback of minimax strategy is that it explores each node in the tree deeply to provide the best path among all the...

3 minutes read.

Local Search Algorithms and Optimization Problem

The informed and uninformed search expands the nodes systematically in two ways: keeping different paths in the memory and selecting the best suitable path, Which leads to a solution state required to reach the goal...

2 minutes read.