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:
authorAlfredo Canziani <alfredo.canziani@gmail.com>2016-03-02 06:12:12 +0300
committerAlfredo Canziani <alfredo.canziani@gmail.com>2016-03-02 06:12:12 +0300
commitfadfadb961e492f0da22e95386e96c1bffff019c (patch)
treeabb3921d29fc15b91b7a9f9d8a3192db5ba761cb /ELU.lua
parent260cc314fe5336b1d8bff56294a135a052514d7c (diff)
Better __tostring__ and cleans formatting
Diffstat (limited to 'ELU.lua')
-rw-r--r--ELU.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/ELU.lua b/ELU.lua
index e654a64..1dc0f7c 100644
--- a/ELU.lua
+++ b/ELU.lua
@@ -2,7 +2,7 @@ local ELU, parent = torch.class('nn.ELU', 'nn.Module')
--[[
Djork-Arné Clevert, Thomas Unterthiner, Sepp Hochreiter
- Fast and Accurate Deep Network Learning by Exponential Linear Units (ELUs)
+ Fast and Accurate Deep Network Learning by Exponential Linear Units (ELUs)
http://arxiv.org/pdf/1511.07289.pdf
--]]