jake2004 commited on
Commit
1949fd2
·
verified ·
1 Parent(s): e77427a

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +17 -0
config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "yolov8",
3
+ "num_labels": 2,
4
+ "image_size": 640,
5
+ "backbone": "CSPDarknet53",
6
+ "pretrained": true,
7
+ "input_channels": 3,
8
+ "conf_thresh": 0.5,
9
+ "iou_thresh": 0.4,
10
+ "max_detections": 100,
11
+ "stride": [8, 16, 32],
12
+ "anchor_generator": {
13
+ "sizes": [[12, 16, 32, 64, 128], [256, 512, 1024]],
14
+ "aspect_ratios": [[1, 2, 0.5], [1, 2, 0.5]]
15
+ },
16
+ "nms_thresh": 0.4
17
+ }