WePCf / darknet-mobilenet-v2

Darknet for MobileNet v2
Other
80 stars 27 forks source link

why forward_conv_layer is changed #8

Open qipengh opened 5 years ago

qipengh commented 5 years ago

Hello , why forward_conv_layer is changed. the original version: if (l.size == 1) { b = im; } else { im2col_cpu(im, l.c/l.groups, l.h, l.w, l.size, l.stride, l.pad, b); } In your code: im2col_cpu(im, l.c/l.groups, l.h, l.w, l.size, l.stride, l.pad, b);

I don't understand. Could you do some explain? thanks.

azuryl commented 5 years ago

I had tested it just different express ,the result is same