nanashi7744
commited on
Commit
•
ac77518
1
Parent(s):
dbdf348
Update config.json
Browse files- config.json +9 -9
config.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
{
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
|
|
|
1 |
+
{
|
2 |
+
"model_type": "yolo",
|
3 |
+
"num_classes": 5,
|
4 |
+
"input_size": [640, 640],
|
5 |
+
"anchors": [[10, 13], [16, 30], [33, 23], [30, 61], [62, 45], [59, 119], [116, 90], [156, 198], [373, 326]], // These are common anchors; you can leave them out if unsure.
|
6 |
+
"backbone": "CSPDarknet", // You can use a generic backbone name or check the YOLOv11 documentation for the exact backbone.
|
7 |
+
"epochs": 20,
|
8 |
+
"pretrained": true
|
9 |
+
}
|
10 |
|