Skip to content

Commit 4432cdf

Browse files
committed
add stereographic slice samplers to the README
1 parent 6c305ff commit 4432cdf

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ For general usage, please refer to [here](https://turinglang.org/SliceSampling.j
2222
### Multivariate Slice Sampling Algorithms
2323
- Latent slice sampling ([LSS](https://turinglang.org/SliceSampling.jl/dev/latent_slice/)) by Li and Walker[^LW2023] (`LatentSlice`)
2424
- Gibbsian polar slice sampling ([GPSS](https://turinglang.org/SliceSampling.jl/dev/gibbs_polar/)) by P. Schär, M. Habeck, and D. Rudolf[^SHR2023] (`GibbsPolarSlice`)
25+
- Stereographic slice sampling[^BLR2024] (`StereographicSlice`)
2526

2627
## Example with Turing Models
2728
This package supports the [Turing](https://github.com/TuringLang/Turing.jl) probabilistic programming framework:
@@ -46,6 +47,7 @@ The following slice samplers can also be used as a conditional sampler in `Turin
4647
* For multidimensional variables:
4748
* `RandPermGibbs`
4849
* `HitAndRun`
50+
* `StereographicSlice`
4951
* For unidimensional variables:
5052
* `Slice`
5153
* `SliceSteppingOut`
@@ -84,3 +86,4 @@ sample(model, sampler, n_samples)
8486
[^SHR2023]: Schär, P., Habeck, M., & Rudolf, D. (2023, July). Gibbsian polar slice sampling. In International Conference on Machine Learning.
8587
[^GG1984]: Geman, S., & Geman, D. (1984). Stochastic relaxation, Gibbs distributions, and the Bayesian restoration of images. IEEE Transactions on Pattern Analysis and Machine Intelligence, (6).
8688
[^BRS1993]: Bélisle, C. J., Romeijn, H. E., & Smith, R. L. (1993). Hit-and-run algorithms for generating multivariate distributions. Mathematics of Operations Research, 18(2), 255-266.
89+
[^BLR2024]: Bell, Cameron, Krzystof Łatuszyński, and Gareth O. Roberts. "Adaptive stereographic MCMC." arXiv preprint arXiv:2408.11780 (2024)

src/multivariate/stereographic.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
StereographicSlice(; max_proposals)
44
5-
Stereographic slice sampling algorithm by Bell, Latuszynski, and Roberts[^BLR].
5+
Stereographic slice sampling algorithm by Bell, Latuszynski, and Roberts[^BLR2024].
66
77
# Keyword Arguments
88
- `max_proposals::Int`: Maximum number of proposals allowed until throwing an error (default: `$(DEFAULT_MAX_PROPOSALS)`).

0 commit comments

Comments
 (0)