blackjax icon indicating copy to clipboard operation
blackjax copied to clipboard

Separate random proposals and the RMH acceptance step

Open rlouf opened this issue 3 years ago • 2 comments

The RMH acceptance step is used by many MCMC algorithms across the library and we should thus be able to import it from a separate module. Should probably go in proposals.py.

We can also refactor the rmh kernel and rename it random_walk. I am not certain we should expose gaussian random walk as it is rather easy to build a random walk from any proposal. TBD.

rlouf avatar Jan 24 '22 21:01 rlouf

The idea behind this issue is to be able to use Radford Neal's non reversible update of the value to which we compare the acceptance probability (paper).

This will require some thought to apply everywhere throughout the mcmc module, especially with the progressive sampling schemes. But maybe we don't need to do this yet, applying it to vanilla HMC/GHMC would be a good start.

rlouf avatar Jan 18 '23 19:01 rlouf

This is not going to be a breaking change so we can drop this for v1.

rlouf avatar Feb 03 '23 16:02 rlouf