Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/nn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhou Mo <cdluminate@gmail.com>2016-08-13 18:35:50 +0300
committerZhou Mo <cdluminate@gmail.com>2016-08-13 18:35:50 +0300
commitb78d6d6a837b1426b14a7ada76a496c3e46b01b1 (patch)
treef4e2c3c2120f45d72c4920c3fc04cc08221068cd /VolumetricDropout.lua
parent7bf5a99138d7b2f72733e0916b4568f71c9ecbd8 (diff)
Fix many spelling errors with tool `codespell`.
This patch is imported from Debian Package.
Diffstat (limited to 'VolumetricDropout.lua')
-rw-r--r--VolumetricDropout.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/VolumetricDropout.lua b/VolumetricDropout.lua
index 5f495af..1be85b1 100644
--- a/VolumetricDropout.lua
+++ b/VolumetricDropout.lua
@@ -19,7 +19,7 @@ function VolumetricDropout:updateOutput(input)
end
self.noise:bernoulli(1-self.p)
-- We expand the random dropouts to the entire feature map because the
- -- features are likely correlated accross the map and so the dropout
+ -- features are likely correlated across the map and so the dropout
-- should also be correlated.
self.output:cmul(torch.expandAs(self.noise, input))
else