ABC

Creator
Creator
Seonglae Cho
Created
Created
2024 Dec 6 16:18
Editor
Edited
Edited
2025 Jun 2 15:54

Approximate Bayesian Computation

Bayesian inference with
Monte Carlo Method
when the
Likelihood
is intractable
Approximating posterior probability distribution by generating data through simulation and comparing it with real data
First, we sample parameter values θ^\hatθ from the prior distribution. Then, we simulate a dataset D^\hat D using the statistical model specified by θ^\hatθ. If the simulated dataset Db differs too much from the observed data D^\hat D, we discard the sampled parameter θ^\hat θ.
In practice, we accept Db if it falls within a tolerance ϵ0ϵ \ge 0, meaning the distance ρ(D^,D)ϵ,ρ(\hat D, D) ⩽ ϵ, where ρρ is a distance measure that quantifies the difference between both datasets (for example, using Euclidean distance).
The ABC rejection algorithm produces a set of parameter values that approximately follow the desired posterior distribution without requiring likelihood evaluation.
 
 
 
 
 

Recommendations