Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowPythonExamples / examples / where_v2 / __init__.py
1 import tensorflow as tf
2
3 in_ = tf.compat.v1.placeholder(dtype=tf.bool, shape=[2], name="Hole")
4 where_v2_ = tf.compat.v1.where_v2(in_)