/bunny

A progress bar like tqdm, but with more bunny.

Primary LanguagePythonMIT LicenseMIT

bunny

bunny training

https://twitter.com/tkasasagi/status/1045582451769192449

Usage:

from bunny import bunny
import time

# simulate long training epoch
def train_epoch():
	time.sleep(0.3)

# training loop
epochs = range(1, 151)
for epoch in bunny(epochs):  # use bunny like tqdm
	train_epoch()

Installation

pip install git+git://github.com/bheinzerling/bunny