From e3066bea739042fa6dd2f7fd667b7a48e7775ec7 Mon Sep 17 00:00:00 2001 From: Kyurae Kim Date: Wed, 29 May 2024 02:00:34 -0400 Subject: [PATCH] fix docs --- docs/src/gibbs_polar.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/gibbs_polar.md b/docs/src/gibbs_polar.md index 8d67770..b133b0e 100644 --- a/docs/src/gibbs_polar.md +++ b/docs/src/gibbs_polar.md @@ -43,7 +43,7 @@ The only tunable parameter of the algorithm is the size of the search interval ( By the nature of polar coordinates, GPSS only works reliably for targets with dimension at least $$d \geq 2$$. !!! warning - When initializing the chain (*e.g.* the `initial_params` keyword arguments in `AbstractMCMC.sample`), it is necessary to inialize from a point $$x_0$$ that has a sensible norm $$\lVert x_0 \rVert > 0$$, otherwise, the chain will start from a pathologic point in polar coordinates. This might even result in the sampler getting stuck in an infinite loop. (This can be prevented by setting `max_proposals`.) If $$\lVert x_0 \rVert \leq 1e-5$$, the current implementation will display a warning. + When initializing the chain (*e.g.* the `initial_params` keyword arguments in `AbstractMCMC.sample`), it is necessary to inialize from a point $$x_0$$ that has a sensible norm $$\lVert x_0 \rVert > 0$$, otherwise, the chain will start from a pathologic point in polar coordinates. This might even result in the sampler getting stuck in an infinite loop. (This can be prevented by setting `max_proposals`.) If $$\lVert x_0 \rVert \leq 10^{-5}$$, the current implementation will display a warning. ```@docs