maksimiposteriori
Maksimiposteriori, or maximum a posteriori estimation, is a method in Bayesian statistics to estimate an unknown parameter by selecting the value that maximizes the posterior distribution given observed data. The posterior is proportional to the likelihood times the prior: p(theta|D) ∝ p(D|theta) p(theta). The MAP estimate is theta_MAP = argmax_theta p(D|theta) p(theta), equivalently theta_MAP = argmax_theta [log p(D|theta) + log p(theta)]. If the prior p(theta) is uniform (or very flat), the MAP estimate reduces to the maximum likelihood estimate (MLE).
The MAP approach uses prior information to regularize estimates, which can be beneficial in small-sample situations
In practice, computing the MAP estimate often requires optimization techniques. The MAP is one point estimate;
Common contexts for MAP include parameter estimation in statistics, machine learning, signal processing, and pattern recognition.