Skip to content

Commit

Permalink
fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Red-Portal committed Aug 12, 2024
1 parent 3a3b341 commit 2e2efed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/latent_slice.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Naturally, the sampler operates as a blocked-Gibbs sampler
l_n &\sim \operatorname{Uniform}\left(l; \; x_{n-1} - s_{n-1}/2,\, x_{n-1} + s_{n-1}/2\right) \\
s_n &\sim p(s \mid x_{n-1}, l_{n}) \\
t_n &\sim \operatorname{Uniform}\left(0, \pi\left(x_{n-1}\right)\right) \\
x_n &\sim \operatorname{Uniform}\left\{x \mid \pi\left(x_n\right) > t_n\right\},
x_n &\sim \operatorname{Uniform}\left\{x \mid \pi\left(x\right) > t_n\right\},
\end{aligned}
```
When $$x_n$$ is updated using the usual shrinkage procedure of Neal[^N2003], $$s_n$$ and $$l_n$$ are used to form the initial search window.
Expand Down

2 comments on commit 2e2efed

@Red-Portal
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • A default initializer has been added for Turing models. Thus, sample can be called without specifying initial_params.
  • Univariate slice samplers can now be used directly on 1-dimensional targets through the AbstractMCMC interface.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/112921

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.0 -m "<description of version>" 2e2efed4f389246cda9536955760029486327793
git push origin v0.5.0

Please sign in to comment.