Bayesian Inference¶
We have a signal \(S\) that goes through a \"model\" \(a\) through which we observe \(X\) (with sum added noise \(N\)). The aim of Bayesian Inference is to try to infer \(S\) given the observed \(X\).
Hypothesis testing is done on an unknown that takes some possible values, and the aim is to arrive at a value that gives a small probability of incorrect decision (e.g. - Radar)
Estimation is aimed at finding the value of a quantity with a small estimation error (e.g. poll estimation)
Bayes Rule
Note that Bayesian inference will give us a distribution over the possible values, but it is often desirable to get an estimate.
Maximum a Posteriori (MAP)¶
MAP is a point estimate of the unknown quantity and is defined as follows
In continuous case, expected value can be a better estimate
Maximum Likelihood Estimation¶
This is another method to give estimates from the Bayesian Inference. We assume the random variable of interest to be generated through a model with some parameters, i.e. \(X \sim p_{X}(x;\theta)\) and we pick the \(\theta\) that makes the data most likely
Thus, we can see that if we assume a uniform prior on \(\theta\), MAP and MLE estimates are the same. MLE estimates tha maximum through cosideration of multiple probabilistic models. We can get different estimates for different priors.
Least Mean Square Estimate¶
Here, we aim to find an estimate such that
\(E[\Theta]\) minimizes the least squares estimate
When \(X\) is observed, the best estimate simply becomes \(E[\Theta \vert X]\).