prestonzen
commited on
Create config.json
Browse files- config.json +15 -0
config.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architecture": "YOLOv8",
|
3 |
+
"framework": "PyTorch",
|
4 |
+
"input_size": [3, 640, 640],
|
5 |
+
"num_classes": 4,
|
6 |
+
"anchors": [
|
7 |
+
[10, 13], [16, 30], [33, 23],
|
8 |
+
[30, 61], [62, 45], [59, 119],
|
9 |
+
[116, 90], [156, 198], [373, 326]
|
10 |
+
],
|
11 |
+
"pretrained": true,
|
12 |
+
"stride": [8, 16, 32],
|
13 |
+
"model_type": "detection",
|
14 |
+
"task": "object-detection"
|
15 |
+
}
|