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
I think there are two errors in kaiming_initializer:
The calculated weights scale should be square rooted.
The calculated weight scale in the case of a convolutional layer, should be (gain/(DoutKK))(1/2), instead of (gain/(DinKK))(1/2). This is since, according to your implementation, Dout that you are feeding the kaiming initializer DeepConvNet init method, is the number of input dimensions.
I hope i am not mistaken,
Lana
The text was updated successfully, but these errors were encountered:
Hello,
Thank you for the solution.
I think there are two errors in kaiming_initializer:
I hope i am not mistaken,
Lana
The text was updated successfully, but these errors were encountered: