Skip to content

Commit dc7cfee

Browse files
committed
Show more digits of step size in progress_bar
1 parent 57e30ef commit dc7cfee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/step_methods/hmc/nuts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def competence(var, has_grad):
236236
def _progressbar_config(n_chains=1):
237237
columns = [
238238
TextColumn("{task.fields[divergences]}", table_column=Column("Divergences", ratio=1)),
239-
TextColumn("{task.fields[step_size]:0.2f}", table_column=Column("Step size", ratio=1)),
239+
TextColumn("{task.fields[step_size]:0.3f}", table_column=Column("Step size", ratio=1)),
240240
TextColumn("{task.fields[tree_size]}", table_column=Column("Grad evals", ratio=1)),
241241
]
242242

0 commit comments

Comments
 (0)