We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
describe(chain)
1 parent cafd9d7 commit 61ab9f6Copy full SHA for 61ab9f6
docs/src/general.md
@@ -57,7 +57,8 @@ end
57
sampler = RandPermGibbs(SliceSteppingOut(2.))
58
n_samples = 10000
59
model = demo()
60
-sample(model, externalsampler(sampler), n_samples)
+chain = sample(model, externalsampler(sampler), n_samples)
61
+describe(chain)
62
```
63
64
### Conditional sampling in a `Turing.Gibbs` sampler
@@ -87,7 +88,8 @@ sampler = Turing.Gibbs(
87
88
89
n_samples = 1000
90
model = simple_choice([1.5, 2.0, 0.3])
-sample(model, sampler, n_samples)
91
+chain = sample(model, sampler, n_samples)
92
93
94
95
## Drawing Samples
0 commit comments