Skip to content

Commit d3a346a

Browse files
committed
removed warmup column from progress bar
1 parent 46a9b3c commit d3a346a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pymc/progress_bar.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -402,10 +402,7 @@ def update(self, chain_idx, is_last, draw, tuning, stats):
402402
)
403403

404404
def create_progress_bar(self, step_columns, progressbar, progressbar_theme):
405-
columns = [
406-
TextColumn("{task.fields[draws]}", table_column=Column("Draws", ratio=1)),
407-
TextColumn("{task.fields[in_warmup]}", table_column=Column("Warmup", ratio=1)),
408-
]
405+
columns = [TextColumn("{task.fields[draws]}", table_column=Column("Draws", ratio=1))]
409406

410407
if self.full_stats:
411408
columns += step_columns

0 commit comments

Comments
 (0)