Hi everyone, It doesn't look like the `fastprogre...
# ask-metaflow
a
Hi everyone, It doesn't look like the `fastprogress` library is fully compatible with Metaflow. For example, it doesn't show the progress bar whilst in progress; It only appears after completing the epoch. Any suggestions for a workaround? Example Code:
Copy code
from fastprogress.fastprogress import master_bar, progress_bar
mb = master_bar(range(1, self.NUMBER_EPOCHS+1))

for epoch in mb:
     epoch_loss = 0
     for step, batch in enumerate(progress_bar(self.train_dataloader, parent=mb)):
           x_batch, y_batch = batch
1