Keras integration with TQDM progress bars.
TQDMNotebookCallback with leave_inner=False (default)
TQDMNotebookCallback with leave_inner=True
TQDMCallback for command-line scripts
Stable release
pip install keras-tqdm
Development release
git clone https://github.com/bstriner/keras-tqdm.git cd keras-tqdm python setup.py install
It's very easy to use Keras TQDM. The only required change is to remove default messages (verbose=0) and add a callback to model.fit. The rest happens automatically! For Jupyter Notebook required code modification is as simple as:
from keras_tqdm import TQDMNotebookCallback # keras, model definition... model.fit(X_train, Y_train, verbose=0, callbacks=[TQDMNotebookCallback()])
For plain text mode (e.g. for Python run from command line)
from keras_tqdm import TQDMCallback # keras, model definition... model.fit(X_train, Y_train, verbose=0, callbacks=[TQDMCallback()])
Use keras_tqdm to utilize TQDM progress bars for Keras fit loops. keras_tqdm loops can be nested inside TQDM loops to display nested progress bars (although you can use them inside ordinary for loops as well). Set verbose=0 to suppress the default progress bar.
from keras_tqdm import TQDMCallback from tqdm import tqdm for model in tqdm(models, desc="Training several models"): model.fit(x, y, verbose=0, callbacks=[TQDMCallback()])
For IPython and Jupyter notebook TQDMNotebookCallback instead of TQDMCallback. Use tqdm_notebook in your own code instead of tqdm.
Please feel free to submit PRs and issues. Comments, questions, and requests are welcome. If you need more control, subclass TQDMCallback and override the tqdm function.