Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds stereographic slice sampling by 1. This sampler is a multivariate slice sampler and does not operate over an extended state-space, which means it is properly reversible with respect to the model parameters. Therefore, this can be used as a Gibbs sampler component. This complementsGibbsPolarSlice
, which works well on heavy-tailed multivariate targets but operates on an extended state space. Some preliminary experiments suggest thatGibbsPolarSlice
works modestly better thanStereographicSlice
. However, the performance could be improved in case the target distribution is conditioned and re-centered through adaptation as done in the original paper1.After some simple empirical evaluation, it seems like using
RandPermGibbs
with univariate slice samplers still work much better as a component Gibbs sampler. I decided not to add stereographic slice sampling.Minor refactors,
Footnotes
Bell, Cameron, Krzystof Łatuszyński, and Gareth O. Roberts. "Adaptive stereographic MCMC." arXiv preprint arXiv:2408.11780 (2024). ↩ ↩2