Downloads · 30 days
0
Revrse/icon-labelling
icon-labelling is a machine learning model from Revrse. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
Downloads · 30 days
0
Access
Public
Updated Apr 29, 2024
Repo size
226 MB
Likes
0
Public
Click a slice to open those files.
.pt113 MB · 100%
From the Hugging Face model README
from ultralyticsplus import YOLO, postprocess_classify_output
# load model
model = YOLO('Revrse/icon-labelling')
# set image
image = 'test/155.png'
# perform inference
prediction = model(image)
# observe results
print(prediction[0].names[prediction[0].probs.top1])