4uiiurz1 / pytorch-res2net

PyTorch implementation of Res2Net
MIT License
112 stars 29 forks source link

Res2Net-50-L with 18w x 4s #1

Closed changewOw closed 5 years ago

changewOw commented 5 years ago

文章说Res2Net-50-L with 18w x 4s。这个宽度为18是怎么实现的,因为18 % 4=2啊,难道不是等分的

4uiiurz1 commented 5 years ago

Sorry, I can't read Chinese.

changewOw commented 5 years ago

The paper mentioned that Res2net-50-L with 18w x 4s ,18 means width of the filters & 4 means scales.So my question is that 18 mod 4 is not equal 0, and in your codes,you wirte this in res2netbottleneck if planes % scales != 0: raise ValueError('Planes must be divisible by scales') So Is it my wrong understanding? last,Thank you for your excellent work.

4uiiurz1 commented 5 years ago

I have fixed it!