hizhangp / yolo_tensorflow

Tensorflow implementation of YOLO, including training and test phase.
MIT License
799 stars 442 forks source link

some prolems about code #58

Open Polaris-SDU opened 6 years ago

Polaris-SDU commented 6 years ago

I see "net = slim.max_pool2d(net, 2, padding='SAME', scope='pool_3')" in the code. Is anybody can tell why? I think it should be net = slim.max_pool2d(net, 2, padding='VALID', scope='pool_3'). Thanks in advance!

harshhx17 commented 6 years ago

@Polaris-SDU They will yield the same result here...