diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2015-06-19 15:59:09 -0400 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2015-06-19 15:59:09 -0400 |
commit | 7bf692d9ae344ccef044923f131f5ce8de85b0b4 (patch) | |
tree | 227af7599d2ef24bbc4bd6c4de5be384969fa139 /gfgru.py | |
parent | de89d218940295f834523dfcfd6840965a63dda5 (diff) | |
download | text-rnn-7bf692d9ae344ccef044923f131f5ce8de85b0b4.tar.gz text-rnn-7bf692d9ae344ccef044923f131f5ce8de85b0b4.zip |
Something that does not really work
Diffstat (limited to 'gfgru.py')
-rw-r--r-- | gfgru.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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(), [], []), ] |