summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/Bidirectional_LSTM/__init__.py
blob: b4f0297a3bd625ac2673ad1d7a54f87fa4b9e244 (plain)
1
2
3
4
5
6
7
8
import tensorflow as tf

tf.compat.v1.disable_eager_execution()

in_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=[28, 28, 3], name="Hole")

op_uni_ = tf.compat.v1.keras.layers.LSTM(1, time_major=False, return_sequences=True)
op_bidi_ = tf.compat.v1.keras.layers.Bidirectional(op_uni_)(in_)