File size: 975 Bytes
df61af8 57f6557 ba16ce5 ca46fe4 180631b bd54e9f c33ab40 0c06b12 c33ab40 b8758eb c33ab40 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
---
license: cc-by-4.0
library_name: ultralytics
pipeline_tag: object-detection
inference: false
tags:
- roboflow
- hand_gesture
---
# Yolov8x Tuned to Hand Gestures
Yolo v8x Finetuned on the [hand gestures roboflow dataset.](https://universe.roboflow.com/hand-gestures-recognition/hand-gestures-dataset)
## Inference
```py
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](https://ultralytics.com/) and [Ultralyticsplus](https://pypi.org/project/ultralyticsplus/).
- Epochs: 10
- Optimiser: SGD
- Patience 50
- Imgsz: 640
- Batch: -1 |