ChenYingpeng / caffe-yolov3

A real-time object detection framework of Yolov3/v4 based on caffe
473 stars 231 forks source link

Why network is splitted into two in yolov3-tiny? #29

Closed ddkkevin closed 4 years ago

ddkkevin commented 5 years ago

There are two prototxt files for caffe yolov3-tiny, namely yolov3-tiny-1.prototxt and yolov3-tiny-2.prototxt. The network is broken after layer11-conv? However, the yolov3 network is kept as one, why?

ChenYingpeng commented 5 years ago

Caffe can not duplicate the layer that maxpool layer (params:kernel_size = 2,stride = 1),so rewrite max_pool_1d function for recurrenting it.

ddkkevin commented 5 years ago

I got it,thx