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

param_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(1, 2, 3, 4), name="Hole")
indices_ = tf.constant([1, 2])
op_ = tf.gather(param_, indices_, axis=2)