Submitted by gahaalt t3_zh381d in deeplearning
Hi!
I train lots of DL models. I often check their training progress in the command line. To have a nicer time doing so, I created Progress Table and I decided to share it. It's a direct replacement for TQDM, Keras Progbar
and other progress tracking utilities.
I'll explain the purpose of this package with "before" and "after" GIFs:
Before:
​
https://i.redd.it/52ckca5ip25a1.gif
After:
​
https://i.redd.it/dqbwsw1jp25a1.gif
It's a tiny package with one dependency: colorama
for displaying colored text.
Install with pip install progress-table
.
Code and example-based instructions are here: https://github.com/gahaalt/progress-table
Tell me, if it's interesting for you. Do you have any suggestions for its further development?
VinnyVeritas t1_izk4aoa wrote
Wow, that's a nice extension/replacement. Very cool work!