You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, the way of initializing the weights in inception is pretty weird, and I believe it would be better to initialize everything in the corresponding modules.
🐛 Bug
Hi
I was going through the torchvision code to implement c++ API and I noticed an inconsistency.
In line 298 of inception.py stddev of a class of type BasicConv2d is set to 0.01:
But in line 60 it checks if it's conv2d or linear which a BasicConv2d is none:
I put this code inside the previous if statement:
and it only printed:
so convs inside conv1 BasicConv2d of InceptionAux get initialized with stddev=0.1
is this an error or is it intentional?
The text was updated successfully, but these errors were encountered: