summaryrefslogtreecommitdiff
path: root/torch/legacy/nn/ELU.py
diff options
context:
space:
mode:
Diffstat (limited to 'torch/legacy/nn/ELU.py')
-rw-r--r--torch/legacy/nn/ELU.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/torch/legacy/nn/ELU.py b/torch/legacy/nn/ELU.py
index b84562cd19..56e3a85352 100644
--- a/torch/legacy/nn/ELU.py
+++ b/torch/legacy/nn/ELU.py
@@ -2,6 +2,7 @@
import torch
from .Module import Module
+
class ELU(Module):
"""
Djork-Arné Clevert, Thomas Unterthiner, Sepp Hochreiter
@@ -39,4 +40,3 @@ class ELU(Module):
def __repr__(self):
return '{}(alpha={:.3f})'.format(str(type(self)), self.alpha)
-