Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimerzp committed Sep 17, 2024
1 parent 5ff83a2 commit 2294a60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/models.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
spl = MCHMC(50_000, 0.01;
L = sqrt(2), sigma = ones(target.d),
tune_L = false, tune_sigma = false, adaptive = true)
samples = Sample(spl, target, 200_000; dialog = true)
samples = Sample(spl, target, 500_000; dialog = true)
d1 = samples[1, :]
d2 = samples[2, :]
mm1, m1, s1, = (median(d1), mean(d1), std(d1))
Expand Down Expand Up @@ -64,10 +64,10 @@
target = RosenbrockTarget(a, b, d;
transform = transform,
inv_transform = inv_transform)
spl = MCHMC(10_000, 0.01;
spl = MCHMC(50_000, 0.01;
L = sqrt(2), sigma = ones(target.d),
tune_L = false, tune_sigma = false, adaptive = true)
samples = Sample(spl, target, 200_000; include_latent=true)
samples = Sample(spl, target, 500_000; include_latent=true)
θ1 = samples[1, :]
θ2 = samples[2, :]
x1 = samples[3, :]
Expand Down

0 comments on commit 2294a60

Please sign in to comment.