File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
- # 0.41.1
1
+ # 0.40.2
2
+
3
+ ` sample(model, NUTS(), N; verbose=false) ` now suppresses the 'initial step size' message.
4
+
5
+ # 0.40.1
2
6
3
7
Extra release to trigger Documenter.jl build (when 0.40.0 was released GitHub was having an outage).
4
8
There are no code changes.
Original file line number Diff line number Diff line change 1
1
name = " Turing"
2
2
uuid = " fce5fe82-541a-59a6-adf8-730c64b5f9a0"
3
- version = " 0.40.1 "
3
+ version = " 0.40.2 "
4
4
5
5
[deps ]
6
6
ADTypes = " 47edcb42-4c32-4615-8424-f2b9edc5f35b"
Original file line number Diff line number Diff line change @@ -181,6 +181,7 @@ function DynamicPPL.initialstep(
181
181
vi_original:: AbstractVarInfo ;
182
182
initial_params= nothing ,
183
183
nadapts= 0 ,
184
+ verbose:: Bool = true ,
184
185
kwargs... ,
185
186
)
186
187
# Transform the samples to unconstrained space and compute the joint log probability.
@@ -211,7 +212,7 @@ function DynamicPPL.initialstep(
211
212
# Find good eps if not provided one
212
213
if iszero (spl. alg. ϵ)
213
214
ϵ = AHMC. find_good_stepsize (rng, hamiltonian, theta)
214
- @info " Found initial step size" ϵ
215
+ verbose && @info " Found initial step size" ϵ
215
216
else
216
217
ϵ = spl. alg. ϵ
217
218
end
You can’t perform that action at this time.
0 commit comments