summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/pack/__init__.py
blob: 609bc9b76521aa0b402b0a50cb7f6427fceb331a (plain)
1
2
3
4
5
import tensorflow as tf

in_1 = tf.compat.v1.placeholder(dtype=tf.float32, shape=(2, 3, 4), name="Hole")
in_2 = tf.compat.v1.placeholder(dtype=tf.float32, shape=(2, 3, 4), name="Hole")
op_ = tf.compat.v1.stack([in_1, in_2])