HOME

TheInfoList



OR:

In
probability theory Probability theory or probability calculus is the branch of mathematics concerned with probability. Although there are several different probability interpretations, probability theory treats the concept in a rigorous mathematical manner by expre ...
,
statistics Statistics (from German language, German: ', "description of a State (polity), state, a country") is the discipline that concerns the collection, organization, analysis, interpretation, and presentation of data. In applying statistics to a s ...
, and
machine learning Machine learning (ML) is a field of study in artificial intelligence concerned with the development and study of Computational statistics, statistical algorithms that can learn from data and generalise to unseen data, and thus perform Task ( ...
, recursive Bayesian estimation, also known as a Bayes filter, is a general probabilistic approach for estimating an unknown
probability density function In probability theory, a probability density function (PDF), density function, or density of an absolutely continuous random variable, is a Function (mathematics), function whose value at any given sample (or point) in the sample space (the s ...
(
PDF Portable document format (PDF), standardized as ISO 32000, is a file format developed by Adobe Inc., Adobe in 1992 to present documents, including text formatting and images, in a manner independent of application software, computer hardware, ...
) recursively over time using incoming measurements and a mathematical process model. The process relies heavily upon mathematical concepts and models that are theorized within a study of prior and posterior probabilities known as
Bayesian statistics Bayesian statistics ( or ) is a theory in the field of statistics based on the Bayesian interpretation of probability, where probability expresses a ''degree of belief'' in an event. The degree of belief may be based on prior knowledge about ...
.


In robotics

A Bayes filter is an algorithm used in
computer science Computer science is the study of computation, information, and automation. Computer science spans Theoretical computer science, theoretical disciplines (such as algorithms, theory of computation, and information theory) to Applied science, ...
for calculating the probabilities of multiple beliefs to allow a
robot A robot is a machine—especially one Computer program, programmable by a computer—capable of carrying out a complex series of actions Automation, automatically. A robot can be guided by an external control device, or the robot control, co ...
to infer its position and orientation. Essentially, Bayes filters allow robots to continuously update their most likely position within a coordinate system, based on the most recently acquired sensor data. This is a recursive algorithm. It consists of two parts: prediction and innovation. If the variables are normally distributed and the transitions are linear, the Bayes filter becomes equal to the
Kalman filter In statistics and control theory, Kalman filtering (also known as linear quadratic estimation) is an algorithm that uses a series of measurements observed over time, including statistical noise and other inaccuracies, to produce estimates of unk ...
. In a simple example, a robot moving throughout a grid may have several different sensors that provide it with information about its surroundings. The robot may begin with certainty that it is at position (0,0). However, as it moves further and further from its original position, the robot has continuously less certainty about its position; using a Bayes filter, a probability can be assigned to the robot's belief about its current position, and that probability can be continuously updated from additional sensor information.


Model

The measurements z are the manifestations of a hidden Markov model (HMM), which means the true state x is assumed to be an unobserved
Markov process In probability theory and statistics, a Markov chain or Markov process is a stochastic process describing a sequence of possible events in which the probability of each event depends only on the state attained in the previous event. Informally, ...
. The following picture presents a Bayesian network of a HMM. Because of the Markov assumption, the probability of the current true state given the immediately previous one is conditionally independent of the other earlier states. :p(\textbf_k, \textbf_,\textbf_,\dots,\textbf_0) = p(\textbf_k, \textbf_ ) Similarly, the measurement at the ''k''-th timestep is dependent only upon the current state, so is conditionally independent of all other states given the current state. :p(\textbf_k, \textbf_k,\textbf_,\dots,\textbf_) = p(\textbf_k, \textbf_ ) Using these assumptions the probability distribution over all states of the HMM can be written simply as :p(\textbf_0,\dots,\textbf_k,\textbf_1,\dots,\textbf_k) = p(\textbf_0)\prod_^k p(\textbf_i, \textbf_i)p(\textbf_i, \textbf_). However, when using the Kalman filter to estimate the state x, the probability distribution of interest is associated with the current states conditioned on the measurements up to the current timestep. (This is achieved by marginalising out the previous states and dividing by the probability of the measurement set.) This leads to the ''predict'' and ''update'' steps of the Kalman filter written probabilistically. The probability distribution associated with the predicted state is the sum (integral) of the products of the probability distribution associated with the transition from the (''k'' - 1)-th timestep to the ''k''-th and the probability distribution associated with the previous state, over all possible x_. : p(\textbf_k, \textbf_) = \int p(\textbf_k , \textbf_) p(\textbf_ , \textbf_ ) \, d\textbf_ The probability distribution of update is proportional to the product of the measurement likelihood and the predicted state. : p(\textbf_k, \textbf_) = \frac \propto p(\textbf_k, \textbf_k) p(\textbf_k, \textbf_) The denominator :p(\textbf_k, \textbf_) = \int p(\textbf_k, \textbf_k) p(\textbf_k, \textbf_) d\textbf_ is constant relative to x, so we can always substitute it for a coefficient \alpha, which can usually be ignored in practice. The numerator can be calculated and then simply normalized, since its integral must be unity.


Applications

*
Kalman filter In statistics and control theory, Kalman filtering (also known as linear quadratic estimation) is an algorithm that uses a series of measurements observed over time, including statistical noise and other inaccuracies, to produce estimates of unk ...
, a recursive Bayesian filter for multivariate normal distributions * Particle filter, a sequential Monte Carlo (SMC) based technique, which models the
PDF Portable document format (PDF), standardized as ISO 32000, is a file format developed by Adobe Inc., Adobe in 1992 to present documents, including text formatting and images, in a manner independent of application software, computer hardware, ...
using a set of discrete points * Grid-based estimators, which subdivide the PDF into a deterministic discrete grid


Sequential Bayesian filtering

Sequential Bayesian filtering is the extension of the Bayesian estimation for the case when the observed value changes in time. It is a method to estimate the real value of an observed variable that evolves in time. There are several variations: ;filtering: when estimating the ''current'' value given past and current observations, ; smoothing: when estimating ''past'' values given past and current observations, and ;prediction: when estimating a probable ''future'' value given past and current observations. The notion of Sequential Bayesian filtering is extensively used in control and
robotics Robotics is the interdisciplinary study and practice of the design, construction, operation, and use of robots. Within mechanical engineering, robotics is the design and construction of the physical structures of robots, while in computer s ...
.


Further reading

* * * * * *{{cite journal , first1=Alexander , last1=Volkov , title=Accuracy bounds of non-Gaussian Bayesian tracking in a NLOS environment , journal=Signal Processing , volume=108 , pages=498–508 , year=2015 , doi= 10.1016/j.sigpro.2014.10.025 , bibcode=2015SigPr.108..498V Bayesian estimation Nonlinear filters Linear filters Signal estimation