We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b77676a commit 4bac157Copy full SHA for 4bac157
tensorlayer/layers.py
@@ -3265,7 +3265,7 @@ def __init__(
3265
list_rnn_inputs = tf.unstack(self.inputs, axis=1)
3266
except: ## TF0.12
3267
list_rnn_inputs = tf.unpack(self.inputs, axis=1)
3268
- outputs, fw_state, bw_state = tf.nn.bidirectional_rnn(
+ outputs, fw_state, bw_state = tf.contrib.rnn.static_bidirectional_rnn(
3269
cell_fw=self.fw_cell,
3270
cell_bw=self.bw_cell,
3271
inputs=list_rnn_inputs,
0 commit comments