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

tf.compat.v1.disable_eager_execution()

in_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(4, 4), name="Hole")
op_ = tf.zeros_like(in_)