tyshiwo / DRRN_CVPR17

Code for our CVPR'17 paper "Image Super-Resolution via Deep Recursive Residual Network"
226 stars 82 forks source link

why same BN layer can be used in loop? #16

Open BarCodeReader opened 4 years ago

BarCodeReader commented 4 years ago

Hi, @tyshiwo

Thanks for your papar and code, really like it.

There is one thing which I don't really understand: if we use BN layer in recursive model, means we are going to use the same BN layer for every recursive block an unit. But conv-layer output at different depth is difffernt and thus need different parameter to do the BN...but we apply the same BN again and again...thus what does the BN layer actually do here?

Really thanks if you can give me some hints about this point.