pigeon:
images
Sometimes you want to add labels to a dataset. There are plenty of great labelling tools out there but sometimes you only need something simple from Jupyter. If that sounds familiar you'll want to check out pigeon.
Notes
You can run annotations on images using the code below.
from IPython.display import display, Image
from pigeon import annotate
images = ['pigeon-images/1.png', 'pigeon-images/2.png', 'pigeon-images/3.png']
annotations = annotate(
examples=images,
options=['cute', 'very cute', 'super very cute'],
display_fn=lambda filename: display(Image(filename))
)
If you'd like to fetch some images yourself, you might enjoy placeholder kitten.
Feedback? See an issue? Something unclear? Feel free to mention it here.
If you want to be kept up to date, consider signing up for the newsletter.