Instructions to use awgfgf/yolov8x-tuned-hand-gestures with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use awgfgf/yolov8x-tuned-hand-gestures with ultralytics:
# Couldn't find a valid YOLO version tag. # Replace XX with the correct version. from ultralytics import YOLOvXX model = YOLOvXX.from_pretrained("awgfgf/yolov8x-tuned-hand-gestures") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Yolov8x Tuned to Hand Gestures
Yolo v8x Finetuned on the hand gestures roboflow dataset.
Inference
from ultralyticsplus import YOLO, render_result
# load model
model = YOLO('lewiswatson/yolov8x-tuned-hand-gestures')
# set image
image = 'https://thumbs.dreamstime.com/b/young-man-showing-peace-sign-isolated-over-yellow-background-133210696.jpg'
# perform inference
results = model.predict(image)
# observe results
print(results[0].boxes)
render = render_result(model=model, image=image, result=results[0])
render.show()
Training Parameters
Trained using Ultralytics and Ultralyticsplus.
- Epochs: 10
- Optimiser: SGD
- Patience 50
- Imgsz: 640
- Batch: -1
- Downloads last month
- 6
Model tree for awgfgf/yolov8x-tuned-hand-gestures
Base model
Ultralytics/YOLOv8