Skip to content

Commit

Permalink
Update BatchNormalization.lua
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
temerick committed Feb 5, 2016
1 parent af3aa65 commit f306ad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BatchNormalization.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
Defaults to 1e-5
In training time, this layer keeps a running estimate of it's computed mean and std.
The running sum is kept with a default momentup of 0.1 (unless over-ridden)
The running sum is kept with a default momentum of 0.1 (unless over-ridden)
In test time, this running mean/std is used to normalize.
]]--
local BN,parent = torch.class('nn.BatchNormalization', 'nn.Module')
Expand Down

0 comments on commit f306ad6

Please sign in to comment.