-
Notifications
You must be signed in to change notification settings - Fork 16
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
Other correlation time estimators #3
Comments
A paper from David van der Spoel's group truncates the window when the empirical ACF goes below 0.05 http://cmb.bio.uni-goettingen.de/pub/Hub_JCTC2010.pdf |
For batch means, batch sizes ~n^(1/3) are apparently optimal (page 10) http://projecteuclid.org/download/pdfview_1/euclid.aos/1266586622. They also talk about the tukey-hanning window. Code is in CRAN http://cran.r-project.org/web/packages/mcmcse/mcmcse.pdf |
In case you haven't seen Geyer's chapter from the Handbook of Markov chain Monte Carlo, it's has some nice discussion of this as well in Section 1.10 "Variance Estimation". I'd love to see the initial convex sequence (ICS) estimator be implemented as well (discussed in Section 1.10.2). The canonical reference for this and related methods seems to be:
PDF available here. |
Yes, I've read the paper and cited it in the IPS docs. Adding the ICS is a good idea too. |
Also there's another ACF from http://www.sciencedirect.com/science/article/pii/0370269389915633 that I just saw, where you truncate the summation after a fixed number of terms (e.g. 20), and then add in a remainder based on the ratio of the final two values included in the sum, which looks like an analytical correction based on the assumption that the terms are decaying exponentially. |
M
is chosen to be the smallest value such thatM
is at leastc
times the estimated autocorrelation time, wherec
is something like 4, 6, or 10.The text was updated successfully, but these errors were encountered: