• Stars
    star
    119
  • Rank 296,048 (Top 6 %)
  • Language
    Python
  • License
    MIT License
  • Created almost 6 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A progress bar like tqdm, but with more bunny.

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