Skip to content

Commit 5d9c6a6

Browse files
committed
finish yolov4
1 parent 6df4ba6 commit 5d9c6a6

File tree

2 files changed

+286
-202
lines changed

2 files changed

+286
-202
lines changed

yolov4/yololayer.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ namespace Yolo
2626
};
2727

2828
static YoloKernel yolo1 = {
29-
INPUT_W / 32,
30-
INPUT_H / 32,
31-
{116,90, 156,198, 373,326}
29+
INPUT_W / 8,
30+
INPUT_H / 8,
31+
{12,16, 19,36, 40,28}
3232
};
3333
static YoloKernel yolo2 = {
3434
INPUT_W / 16,
3535
INPUT_H / 16,
36-
{30,61, 62,45, 59,119}
36+
{36,75, 76,55, 72,146}
3737
};
3838
static YoloKernel yolo3 = {
39-
INPUT_W / 8,
40-
INPUT_H / 8,
41-
{10,13, 16,30, 33,23}
39+
INPUT_W / 32,
40+
INPUT_H / 32,
41+
{142,110, 192,243, 459,401}
4242
};
4343

4444
static constexpr int LOCATIONS = 4;

0 commit comments

Comments
 (0)