Closed
Description
before
with tf.Session() as sess:
a = tf.Variable(tf.convert_to_tensor(5, dtype=tf.uint8), name='a')
b = tf.Variable(tf.convert_to_tensor(6, dtype=tf.uint8), name='b')
c = tf.mul(a, b, name="c")
after
with tf.Session() as sess:
a = tf.Variable(tf.convert_to_tensor(5, dtype=tf.uint8), name='a')
b = tf.Variable(tf.convert_to_tensor(6, dtype=tf.uint8), name='b')
c = tf.multiply(a, b, name="c")
Metadata
Metadata
Assignees
Labels
No labels