Tianxiaomo / pytorch-YOLOv4

PyTorch ,ONNX and TensorRT implementation of YOLOv4
Apache License 2.0
4.48k stars 1.49k forks source link

Confuse about the mode structure #440

Closed Hanson0910 closed 3 years ago

Hanson0910 commented 3 years ago

Hi,i am confuse about the csp structure part in your model define, according to the cspnet it will split the input into two part and every part only with half of the channels of the input,but in your model the csp part have the same channels with the input,for example,your first csp structure with input of 64 channels,but the two following branchs also with 64 channels,i think i shoule be 32 channels.