Skip to content

v0.4.13: adding ub.label_gallery() tool for data labelling

Latest
Compare
Choose a tag to compare
@trojblue trojblue released this 17 Nov 11:17
· 1 commit to main since this release

feat: ub.label_gallery:

view and label images within jupyter notebook:

import unibox as ub

uris = ["https://cdn.donmai.us/180x180/8e/ea/8eea944690c0c0b27e303420cb1e65bd.jpg"] * 9
labels = ['Image 1', 'Image 2', 'Image 3'] * 3

# label data interactively
ub.label_gallery(uris, labels)

# or: view images only
# ub.gallery(uris, labels)