summaryrefslogtreecommitdiff
path: root/gfgru.py
diff options
context:
space:
mode:
authorAlex Auvolat <alex.auvolat@ens.fr>2015-06-19 15:59:09 -0400
committerAlex Auvolat <alex.auvolat@ens.fr>2015-06-19 15:59:09 -0400
commit7bf692d9ae344ccef044923f131f5ce8de85b0b4 (patch)
tree227af7599d2ef24bbc4bd6c4de5be384969fa139 /gfgru.py
parentde89d218940295f834523dfcfd6840965a63dda5 (diff)
downloadtext-rnn-7bf692d9ae344ccef044923f131f5ce8de85b0b4.tar.gz
text-rnn-7bf692d9ae344ccef044923f131f5ce8de85b0b4.zip
Something that does not really work
Diffstat (limited to 'gfgru.py')
-rw-r--r--gfgru.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/gfgru.py b/gfgru.py
index ac4c481..29d4398 100644
--- a/gfgru.py
+++ b/gfgru.py
@@ -29,9 +29,8 @@ io_dim = 256
recurrent_blocks = [
# (256, Tanh(), [2048], [Rectifier()]),
# (512, Rectifier(), [1024], [Rectifier()]),
- (512, Tanh(), [2048], [TRectifier()]),
- (512, Tanh(), [2048], [TRectifier()]),
- (512, Tanh(), [2048], [TRectifier()]),
+ (512, Tanh(), [1024], [Rectifier()]),
+ (512, Tanh(), [1024], [Rectifier()]),
# (2, Tanh(), [2], [Rectifier()]),
# (2, Tanh(), [], []),
]