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

lhs_ = tf.compat.v1.placeholder(dtype=tf.bool, shape=(4, 4), name="Hole")
rhs_ = tf.compat.v1.placeholder(dtype=tf.bool, shape=(4, 4), name="Hole")
op_ = tf.compat.v1.logical_or(lhs_, rhs_)