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
Hi, thank you for your sharing. I have two questions about your code in vdsr.py:
1, Why do you set the bias term as False? The official VDSR model contains bias term, is this a trick for a better performance?
2, The initialization you use in this code is m.weight.data.normal_(0, sqrt(2./n))
Is this the initialization with MSRA method? How about using nn.init?
Thank you very much.
The text was updated successfully, but these errors were encountered:
Hi, thank you for your sharing. I have two questions about your code in vdsr.py:
1, Why do you set the bias term as False? The official VDSR model contains bias term, is this a trick for a better performance?
2, The initialization you use in this code is
m.weight.data.normal_(0, sqrt(2./n))
Is this the initialization with MSRA method? How about using nn.init?
Thank you very much.
The text was updated successfully, but these errors were encountered: