-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Notes on basic ABC #2
Comments
OK, the Wilkinson introductory blog post does indeed seem like a nice place to start with ABC - certainly enough to code up some toy examples. The idea is simply to simulate mock datasets from the prior and sampling distributions, and for each one compute a summary statistic (or a vector of them). In the simplest possible ABC routine, you simply reject X% of them for having summary statistics greater than epsilon different from the summary statistic computed on the real data, leaving you with an approximate posterior PDF for the model parameters. The size of epsilon (and therefore X) determine 1) how good an approximate posterior you end up with and 2) how many simulations you have to do to make it. In the simple toy problem of inferring the width parameter of a Gaussian, a good summary statistic would be the variance of the simulated data points, but another could be the KS statistic, etc. The skill seems to be in defining summary statistics, and then later, doing better than just rejection sampling. |
Hi all! P.S. By the way, one of the authors promotes the use of ABC in astronomy in his blog. |
Thanks Ilya! On Fri, May 22, 2015 at 10:55 PM, Ilya notifications@github.com wrote:
|
Let's write some notes together. Feel free to suggest reading material below, and keep track of your own progress. Note that this issue will only be complete when all of our checkboxes are ticked!
Phil's reading list @drphilmarshall:
Adam's reading list @abmantz :
Doug's reading list @deapplegate :
The text was updated successfully, but these errors were encountered: