From 044c328515215f3af717d2da386a17d3c2376112 Mon Sep 17 00:00:00 2001 From: Hong Ge <3279477+yebai@users.noreply.github.com> Date: Tue, 17 Dec 2024 22:02:09 +0000 Subject: [PATCH] Update index.qmd --- tutorials/docs-12-using-turing-guide/index.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/docs-12-using-turing-guide/index.qmd b/tutorials/docs-12-using-turing-guide/index.qmd index 565440296..fcf757629 100755 --- a/tutorials/docs-12-using-turing-guide/index.qmd +++ b/tutorials/docs-12-using-turing-guide/index.qmd @@ -280,7 +280,7 @@ end # Construct a model with x = missing model = gdemo(missing) -c = sample(model, HMC(0.01, 5), 500) +c = sample(model, HMC(0.05, 20), 1000) ``` Note the need to initialize `x` when missing since we are iterating over its elements later in the model. The generated values for `x` can be extracted from the `Chains` object using `c[:x]`.