xingdi-eric-yuan / bunny

A progress bar like tqdm, but with more bunny.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A progress bar like tqdm, but with more bunny.

License:MIT License


Languages

Language:Python 100.0%