Midterm Exam Flashcards
A histogram filter is an example of a __________ filter.
Discrete
A Kalman Filter is an example of a ____________ filter.
Continuous
Histogram Filter beliefs are unimodal? (True/False)
False. They are multimodal (i.e. it can represent multiple Gaussian “bumps”.)
Kalman Filter beliefs are unimodal? (True/False)
True
Histogram filters are represented as grids? (True/False)
True
Kalman filters are represented by Gaussians? (True/False)
True
Is the efficiency of a histogram filter quadratic or exponential?
Exponential. Any k-dimensional space when subdivided into grids the number of cells scales exponentially. This means it works best for low dimensional problems.
Is the efficiency of a Kalman filter quadratic or exponential?
Quadratic. This is because the problem is defined using a vector that contains the means, and then a covariance matrix that is quadratic. The reason for this is that if your measurement space is fixed size, it always scales quadratically. (Video says to just take this on faith.)
In a robotics context, is a histogram filter an EXACT or APPROXIMATE estimate of the a posteriori distribution?
Approximate. This is because of the discretization. Since we’re binning things we lose information on the precise location.
In a robotics context, is a Kalman filter an EXACT or APPROXIMATE estimate of the a posteriori distribution?
Approximate. The lecture video just says the math is too involved, but that the KF is exact only for linear systems. Since practically every real-world application is non-linear, this means that KF can be considered approximates.
A Particle Filter is an example of a ____________ filter.
Continuous
Particle Filter beliefs are multi-modal? (True/False)
True
In a robotics context, is a Particle Filter an EXACT or APPROXIMATE estimate of the a posteriori distribution?
Approximate
Is the efficiency of a Particle Filter quadratic or exponential?
Neither (or unknown). Trick question. This is something the jury is still out on. Research is ongoing.
What is the key advantage of particle filters?
They’re very easy to program.