Instructions to use merenn/objectdetection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use merenn/objectdetection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("object-detection", model="merenn/objectdetection")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("merenn/objectdetection", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +13 -1
config.json
CHANGED
|
@@ -1 +1,13 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
model:
|
| 2 |
+
architecture: "YOLO" # Örnek bir model mimarisi
|
| 3 |
+
backbone: "YOLOv8"
|
| 4 |
+
input_size: (640)
|
| 5 |
+
num_classes: 3 # Toplam sınıf sayısı
|
| 6 |
+
|
| 7 |
+
training:
|
| 8 |
+
num_epochs: 75
|
| 9 |
+
|
| 10 |
+
classes:
|
| 11 |
+
- upper body
|
| 12 |
+
- lower body
|
| 13 |
+
- full body
|