aliyun/Self-Evolving-Keypoint-Demo

About ResNet-v2

Closed this issue · 1 comments

I have a question for the ResNet-v2 blocks in the paper,but in you code ,The ResBlock is not same with the ResNet-v2 blocks,in you code ,the ResBlock are BN,Relu ,Conv2d and a shortcut,but the ResNetBlock-v2 are BN,Relu ,Conv2d, BN,Relu ,Conv2d and a shortcut,please tell me the difference between them.thanks.

The idea of ResNetBlock-v2 is to put the activation layer before the conv layer. So the paper writes we use ResNet-v2 block. We use one combination of BN/Relu/Conv2d in a block to reduce the computation.