Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sunxd3 committed Nov 18, 2024
1 parent 93c2f6e commit c7d5175
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "JuliaBUGS"
uuid = "ba9fb4c0-828e-4473-b6a1-cd2560fee5bf"
version = "0.7.0"
version = "0.7.1"

[deps]
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
Expand Down
9 changes: 2 additions & 7 deletions test/ext/mcmchains.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,20 +97,15 @@
A[1, 1:3] ~ Dirichlet(ones(3))
A[2, 1:3] ~ Dirichlet(ones(3))
A[3, 1:3] ~ Dirichlet(ones(3))

mu[1:3] ~ MvNormal(zeros(3), 10 * Diagonal(ones(3)))
sigma[1] ~ InverseGamma(2, 3)
sigma[2] ~ InverseGamma(2, 3)
sigma[3] ~ InverseGamma(2, 3)
end
model = compile(model_def, (;))
ad_model = ADgradient(:ReverseDiff, model; compile=Val(true))
hmc_chain = AbstractMCMC.sample(
ad_model,
NUTS(0.8),
10;
chain_type=Chains,
)
hmc_chain = AbstractMCMC.sample(ad_model, NUTS(0.8), 10; chain_type=Chains)
@test hmc_chain.name_map[:parameters] == [
Symbol("sigma[3]"),
Symbol("sigma[2]"),
Expand Down

0 comments on commit c7d5175

Please sign in to comment.