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.
Release files for keras-pbar 0.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| keras_pbar-0.0.1.tar.gz | 1.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| keras_pbar-0.0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 4.1 kB
Release files / keras_pbar-0.0.1.tar.gz
| Download URL | keras_pbar-0.0.1.tar.gz |
|---|---|
| Size | 1.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8c05a759a78a5fa77aa058a7aa87e0d1da5564276cae6e1a04556a65b4d70ca1
|
|
BLAKE2b-256 checksum How to use checksums |
227096e67fbbfe0238e3ef56185ee58d7d539e33047ea868ac5da0b92dd5d255
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.11.3
|
Release files / keras_pbar-0.0.1-py3-none-any.whl
| Download URL | keras_pbar-0.0.1-py3-none-any.whl |
|---|---|
| Size | 2.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
0092434656c73826392891ebb7bdd0e7eb95164db0a6433121191e0bffe4e9b1
|
|
BLAKE2b-256 checksum How to use checksums |
c621ab34bb5dcd178e8141e6e333e7a946999122da09c28a5dba960c7d9e2101
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.11.3
|