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

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