Skip to content

Commit

Permalink
Increase some sample counts
Browse files Browse the repository at this point in the history
  • Loading branch information
mhauru committed Dec 13, 2024
1 parent 53eca86 commit 143ca1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/mcmc/Inference.jl
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ using Turing
pg = PG(10)
gibbs = Gibbs(HMC(0.2, 3, :p; adtype=adbackend), PG(10, :x))

chn_s = sample(copy(rng), testbb(obs), smc, 100)
chn_p = sample(copy(rng), testbb(obs), pg, 100)
chn_g = sample(copy(rng), testbb(obs), gibbs, 100)
chn_s = sample(copy(rng), testbb(obs), smc, 200)
chn_p = sample(copy(rng), testbb(obs), pg, 200)
chn_g = sample(copy(rng), testbb(obs), gibbs, 200)

check_numerical(chn_s, [:p], [meanp]; atol=0.05)
check_numerical(chn_p, [:x], [meanp]; atol=0.1)
Expand Down

0 comments on commit 143ca1e

Please sign in to comment.