diff options
author | Étienne Simon <esimon@esimon.eu> | 2015-07-27 13:07:19 -0400 |
---|---|---|
committer | Étienne Simon <esimon@esimon.eu> | 2015-07-27 13:07:19 -0400 |
commit | 9933cafdf3b218a509c2efd6e6e6ba91ae87aa9c (patch) | |
tree | d696681c2b5a73424bdd226b8c9e385b2580acd7 /model | |
parent | 0021c3fb99d1cd3f8792a8cf5c35548815536428 (diff) | |
download | taxi-9933cafdf3b218a509c2efd6e6e6ba91ae87aa9c.tar.gz taxi-9933cafdf3b218a509c2efd6e6e6ba91ae87aa9c.zip |
Add bidirectional with recurrent ReLu
Diffstat (limited to 'model')
-rw-r--r-- | model/bidirectional.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/model/bidirectional.py b/model/bidirectional.py index 4c4ffb0..5779752 100644 --- a/model/bidirectional.py +++ b/model/bidirectional.py @@ -37,7 +37,8 @@ class BidiRNN(Initializable): self.context_embedder = ContextEmbedder(config) - self.rec = SegregatedBidirectional(LSTM(dim=config.hidden_state_dim, name='recurrent')) + act = config.rec_activation() if hasattr(config, 'rec_activation') else None + self.rec = SegregatedBidirectional(LSTM(dim=config.hidden_state_dim, activation=act, name='recurrent')) self.fwd_fork = Fork([name for name in self.rec.prototype.apply.sequences if name!='mask'], prototype=Linear(), name='fwd_fork') |