Supported Labels
['bird', 'boar', 'dog', 'dragon', 'hare', 'horse', 'monkey', 'ox', 'ram', 'rat', 'snake', 'tiger']
How to use
pip install ultralyticsplus==0.0.28
- Load model and perform prediction:
from ultralyticsplus import YOLO, render_result
model = YOLO('eeshawn11/naruto_hand_seal_detection')
model.overrides['conf'] = 0.50
model.overrides['iou'] = 0.70
model.overrides['agnostic_nms'] = False
model.overrides['max_det'] = 10
image = 'https://github.com/ultralytics/yolov5/raw/master/data/images/zidane.jpg'
results = model.predict(image)
print(results[0].boxes)
render = render_result(model=model, image=image, result=results[0])
render.show()