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.
1 parent 0581a04 commit 6c305ffCopy full SHA for 6c305ff
test/multivariate.jl
@@ -74,11 +74,9 @@ end
74
HitAndRun(SliceSteppingOut(1)),
75
HitAndRun(SliceDoublingOut(1)),
76
77
- # Latent slice sampling
78
LatentSlice(5),
79
-
80
- # Gibbsian polar slice sampling
81
GibbsPolarSlice(100),
+ StereographicSlice(),
82
]
83
@testset "initial_params" begin
84
model = MultiModel(1.0, 1.0, [0.0])
test/turing.jl
@@ -4,7 +4,8 @@
4
s ~ InverseGamma(2, 3)
5
m ~ Normal(0, sqrt(s))
6
1.5 ~ Normal(m, sqrt(s))
7
- return 2.0 ~ Normal(m, sqrt(s))
+ 2.0 ~ Normal(m, sqrt(s))
8
+ return nothing
9
end
10
11
n_samples = 1000
@@ -19,6 +20,7 @@
19
20
21
22
GibbsPolarSlice(5),
23
24
25
chain = sample(
26
model,
0 commit comments