Skip to content

Commit 3cbc14e

Browse files
tchatonthomas
andauthored
Remove time in the Data Processor progress bar (#19108)
Co-authored-by: thomas <[email protected]>
1 parent 35ea94f commit 3cbc14e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/lightning/data/streaming/data_processor.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import types
99
from abc import abstractmethod
1010
from dataclasses import dataclass
11-
from datetime import datetime
1211
from multiprocessing import Process, Queue
1312
from queue import Empty
1413
from time import sleep, time
@@ -869,7 +868,6 @@ def run(self, data_recipe: DataRecipe) -> None:
869868
self.workers_tracker[index] = counter
870869
new_total = sum(self.workers_tracker.values())
871870

872-
pbar.set_postfix({"time": datetime.now().strftime("%H:%M:%S.%f")})
873871
pbar.update(new_total - current_total)
874872

875873
current_total = new_total

0 commit comments

Comments
 (0)