In Bayesian statistics, a maximum a posteriori probability (MAP) estimation is a method of estimating the parameters of a statistical model given observations by finding the parameters that equals to the mode of the posterior probability distribution. It is closely related to the method of maximum likelihood estimation (MLE), but employs an augmented optimization objective which incorporates a prior distribution (that quantifies the additional information available through prior knowledge of the distribution of a parameter) over the parameter one wants to estimate. MAP estimation can therefore be seen as a regularization of MLE.

Description edit

Assume we want to estimate an unobserved population parameter   on the basis of observations,  . Let   be the sampling distribution of  's for  , so that   is the joint density function of all observations when the underlying population parameter is  . Then the estimate:

 

is the maximum likelihood estimate of  .

Now assume that a prior distribution   over   exists. This allows us to treat   as a random variable as in Bayesian statistics. We can calculate the posterior probability distribution of   using Bayes' theorem:

 

where   is a density function of  ,   is the domain of  .

The method of MAP then estimates   as the mode of the posterior probability distribution of this random variable:

 

The denominator of the posterior distribution (so-called marginal likelihood) is always positive and does not depend on  . Therefore, it plays no role in the optimization. Observe that the MAP estimate of   coincides with the MLE estimate when the prior   is uniform (that is, a constant function).

When the loss function is of the form

 

as   goes to 0, the Bayes estimator approaches the MAP estimator, provided that the distribution of   is unimodal. But generally a MAP estimator is not a Bayes estimator unless   is discrete.

Example edit

Suppose that there is a sample   of n independent and identically distributed observations coming from   and a priori distribution of   is given by  . We wish to find the MAP estimate of  . Note that the normal distribution is its own conjugate prior, so we will be able to find a closed-form solution analytically.

The MAP estimate of   is

 

where   is a joint density function of all observations given the population mean equals to   and   is a density function of  .

Since the logarithm function itself is a monotonic function, the values that maximize the optimization objective will also maximize its logarithm.

Therefore, by taking the logarithm function to the optimization objective:

 

Since  's are independent and identically distributed normal random variables, the optimization objective can be written as follows:

 

 

The first and third terms of the optimization objective above do not depend on  . Hence, they can be omitted as below:

 

Note that the problem changed from a maximization problem to a minimization problem by negating the objective after omitting the first and third terms from the previous step. Since the final objective,   , is a convex function of  , it has a global minimum at some value   such that

 

Thus, by taking the partial derivative with respect to  , the MAP estimate of   can be derived as

 

which turns out to be a linear interpolation between the prior mean and the sample mean weighted by their respective covariances.

The case of   is called a non-informative prior and leads to an ill-defined a priori probability distribution. In this case,  

Computation edit

MAP estimates can be computed in several ways:

  1. Analytically, when the mode(s) of the posterior distribution can be given in closed form. This is the case when conjugate priors are used.
  2. Via numerical optimization such as the conjugate gradient method or Newton's method. This usually requires first or second derivatives, which have to be evaluated analytically or numerically.
  3. Via a modification of an expectation-maximization algorithm. This does not require derivatives of the posterior density.
  4. Via a Monte Carlo method using simulated annealing

Criticism edit

While MAP estimation is a limit of Bayes estimators (under the 0-1 loss function), it is not very representative of Bayesian methods in general. This is because MAP estimates are point estimates, whereas Bayesian methods are characterized by the use of distributions to summarize data and draw inferences: thus, Bayesian methods tend to report the posterior mean or median instead, together with credible intervals. This is both because these estimators are optimal under squared-error and linear-error loss respectively - which are more representative of typical loss functions - and because the posterior distribution may not have a simple analytic form: in this case, the distribution can be simulated using Markov chain Monte Carlo techniques, while optimization to find its mode(s) may be difficult or impossible[citation needed].

 
An example of a density of a bimodal distribution in which the highest mode is uncharacteristic of the majority of the distribution

In many types of models, such as mixture models, the posterior may be multi-modal. In such a case, the usual recommendation is that one should choose the highest mode: this is not always feasible (global optimization is a difficult problem), nor in some cases even possible (such as when identifiability issues arise). Furthermore, the highest mode may be uncharacteristic of the majority of the posterior.

Finally, unlike ML estimators, the MAP estimate is not invariant under reparameterization. Switching from one parameterization to another involves introducing a Jacobian that impacts on the location of the maximum.[1]

As an example of the difference between Bayes estimators mentioned above (mean and median estimators) and using a MAP estimate, consider the case where there is a need to classify inputs   as either positive or negative (for example, loans as risky or safe). Suppose there are just three possible hypotheses about the correct method of classification  ,   and   with posteriors 0.4, 0.3 and 0.3 respectively. Suppose given a new instance,  ,   classifies it as positive, whereas the other two classify it as negative. Using the MAP estimate for the correct classifier  ,   is classified as positive, whereas the Bayes estimators would average over all hypotheses and classify   as negative.

  1. ^ Murphy, Kevin P. (2012). Machine learning : a probabilistic perspective. Cambridge, MA: MIT Press. pp. 151–152. ISBN 0262018020.