MaximumaPosterioriSchätzung
Maximum a Posteriori estimation, often abbreviated as MAP, is a method in Bayesian statistics for estimating an unknown parameter by maximizing the posterior distribution given observed data. The MAP estimate theta_MAP is defined as argmax_theta p(theta | D) = argmax_theta p(D | theta) p(theta) / p(D). Because p(D) does not depend on theta, this reduces to argmax_theta p(D | theta) p(theta). In practice, work with the log-posterior: theta_MAP = argmax_theta [ log p(D | theta) + log p(theta) ].
MAP combines likelihood information from the data with prior beliefs encoded in p(theta). A uniform prior yields
Common applications include machine learning models, signal processing, and computer vision. For instance, in regression or
MAP estimation contrasts with Maximum Likelihood Estimation (MLE) by incorporating prior information; it is a Bayesian
Computational approaches include convex optimization for log-concave posteriors, gradient-based methods, Laplace approximations, variational inference, and Markov