ShichenLiu / CondenseNet

CondenseNet: Light weighted CNN for mobile devices
MIT License
694 stars 131 forks source link

Questions on implementation of dropping #39

Open shuuchen opened 3 years ago

shuuchen commented 3 years ago

Hi,

I have some questions on the consistency of implementation of dropping and paper.

1) When you take the sum, you did not use absolute values as written in the paper. https://github.com/ShichenLiu/CondenseNet/blob/833a91d5f859df25579f70a2439dfd62f7fefb29/layers.py#L86

2) You drop during the stage, not when the stage finishes, as written in the paper. https://github.com/ShichenLiu/CondenseNet/blob/833a91d5f859df25579f70a2439dfd62f7fefb29/layers.py#L62

Am I wrong or would you explain about it ? Thank you.