Instructions to use EtanHey/hand-sign-detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use EtanHey/hand-sign-detection with ultralytics:
from ultralytics import YOLOvv8 model = YOLOvv8.from_pretrained("EtanHey/hand-sign-detection") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Add class configuration
Browse files- config.yaml +4 -0
config.yaml
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
classes:
|
| 2 |
+
0: hand
|
| 3 |
+
1: arm
|
| 4 |
+
2: not_hand
|