Skip to content

Commit

Permalink
pbar
Browse files Browse the repository at this point in the history
  • Loading branch information
sordonia committed Jun 26, 2023
1 parent c4d6846 commit 1782922
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions mttl/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def init_train_tqdm(self) -> Tqdm:
"""Override this to customize the tqdm bar for training."""
bar = Tqdm(
desc="Training",
initial=self.train_batch_idx,
position=(2 * self.process_position),
disable=self.is_disabled,
leave=True,
Expand All @@ -44,7 +43,6 @@ def init_predict_tqdm(self) -> Tqdm:
"""Override this to customize the tqdm bar for predicting."""
bar = Tqdm(
desc="Predicting",
initial=self.train_batch_idx,
position=(2 * self.process_position),
disable=self.is_disabled,
leave=True,
Expand Down

0 comments on commit 1782922

Please sign in to comment.