Skip to content

Commit 3c23b79

Browse files
committed
fix typo
1 parent 7269d08 commit 3c23b79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tensorflowTUT/tensorflow8_feeds.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
input1 = tf.placeholder(tf.float32)
1313
input2 = tf.placeholder(tf.float32)
14-
ouput = tf.multiply(input1, input2)
14+
output = tf.multiply(input1, input2)
1515

1616
with tf.Session() as sess:
17-
print(sess.run(ouput, feed_dict={input1: [7.], input2: [2.]}))
17+
print(sess.run(output, feed_dict={input1: [7.], input2: [2.]}))

0 commit comments

Comments
 (0)