Skip to content

Commit

Permalink
longer training window
Browse files Browse the repository at this point in the history
  • Loading branch information
JaimeRZP committed Jun 1, 2024
1 parent a58888d commit 6822810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tuning.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function tune_hyperparameters(
for i = 1:sampler.nadapt
_, state = Step(rng, sampler, state; adaptive = sampler.tune_eps, kwargs...)
xs = [xs adapt(Array, state.x[:])]
if mod(i, Int(sampler.nadapt / 5)) == 0
if mod(i, Int(sampler.nadapt / 500)) == 0
sigma = vec(std(xs, dims = 2))
if sampler.tune_sigma
sampler.hyperparameters.sigma = sigma
Expand Down

0 comments on commit 6822810

Please sign in to comment.