Skip to content

Commit c7cc09b

Browse files
author
um1
committed
small init
1 parent 1161b8d commit c7cc09b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def weights_init_kaiming(m):
2222
def weights_init_classifier(m):
2323
classname = m.__class__.__name__
2424
if classname.find('Linear') != -1:
25-
init.normal_(m.weight.data, std=0.001)
25+
init.normal_(m.weight.data, std=0.0001)
2626
init.constant_(m.bias.data, 0.0)
2727

2828
class USAM(nn.Module):

0 commit comments

Comments
 (0)