Skip to main content

TQDM-like API for Keras Progressbar.

Project description

Keras Progressbar with TQDM-like API.

I'm a big fan of how Keras' progressbar looks, but I was annoyed, that there is no way to use it the same as TQDM progressbar. So, I published this tiny module, in order to avoid copy-pasting it in every my project.

Example usage

import time
import pandas as pd
from keras_pbar import keras_pbar

df = pd.read_csv("data.csv")
for identifier, sliced in keras_pbar(df.group_by("id")):
    # Do some time consuming processing.
    time.sleep(2)

Notes

It does not directly depend on tensorflow, so you can install it without. But probably during import time, it will fail, when keras tries to import tensorlfow.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

keras_pbar-0.0.1.tar.gz (1.8 kB view hashes)

Uploaded Source

Built Distribution

keras_pbar-0.0.1-py3-none-any.whl (2.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page