Update yolov1.cfg

Fix bug: First conv layer must has padding = 3 (because filter = 7x7), not 1
This commit is contained in:
Đặng Xuân Vương 2018-11-16 14:14:01 +07:00
parent 61c9d02ec4
commit eef6948c7a

View File

@ -25,7 +25,7 @@ batch_normalize=1
filters=64
size=7
stride=2
pad=1
pad=3
activation=leaky
[maxpool]