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
In this py file, when get weight_softmax, there is a statement weight_softmax[weight_softmax<0] = 0 and I think maybe this is to remove feature maps with negative effects. However, as weight_softmax[weight_softmax<0] = 0 is implemented, parameters in the network also changes. Is it a good trend?
The text was updated successfully, but these errors were encountered:
In this py file, when get
weight_softmax
, there is a statementweight_softmax[weight_softmax<0] = 0
and I think maybe this is to remove feature maps with negative effects. However, asweight_softmax[weight_softmax<0] = 0
is implemented, parameters in the network also changes. Is it a good trend?The text was updated successfully, but these errors were encountered: