Skip to content

Commit

Permalink
disable more sampling progress logging on CI (#2254)
Browse files Browse the repository at this point in the history
  • Loading branch information
yebai authored Jun 6, 2024
1 parent b3c4481 commit c8bac5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/experimental/gibbs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ end
@testset "gdemo with CSMC & ESS" begin
Random.seed!(100)
alg = Turing.Experimental.Gibbs(@varname(s) => CSMC(15), @varname(m) => ESS())
chain = sample(gdemo(1.5, 2.0), alg, 10_000)
chain = sample(gdemo(1.5, 2.0), alg, 10_000; progress=false)
check_gdemo(chain)
end

Expand Down Expand Up @@ -169,7 +169,7 @@ end
end

# Sample!
chain = sample(MoGtest_default, alg, 1000; progress=true)
chain = sample(MoGtest_default, alg, 1000; progress=false)
check_MoGtest_default(chain, atol = 0.2)
end

Expand All @@ -191,7 +191,7 @@ end
end

# Sample!
chain = sample(model, alg, 1000; progress=true)
chain = sample(model, alg, 1000; progress=false)
check_MoGtest_default_z_vector(chain, atol = 0.2)
end
end
Expand Down

0 comments on commit c8bac5d

Please sign in to comment.