Skip to content

Commit

Permalink
Fix stddev to match NoisyNet paper
Browse files Browse the repository at this point in the history
  • Loading branch information
Devan Stormont committed Feb 19, 2019
1 parent a476865 commit 6c8b281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Factorised NoisyLinear layer with bias
class NoisyLinear(nn.Module):
def __init__(self, in_features, out_features, std_init=0.4):
def __init__(self, in_features, out_features, std_init=0.5):
super(NoisyLinear, self).__init__()
self.in_features = in_features
self.out_features = out_features
Expand Down

0 comments on commit 6c8b281

Please sign in to comment.