We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7269d08 commit 3c23b79Copy full SHA for 3c23b79
tensorflowTUT/tensorflow8_feeds.py
@@ -11,7 +11,7 @@
11
12
input1 = tf.placeholder(tf.float32)
13
input2 = tf.placeholder(tf.float32)
14
-ouput = tf.multiply(input1, input2)
+output = tf.multiply(input1, input2)
15
16
with tf.Session() as sess:
17
- print(sess.run(ouput, feed_dict={input1: [7.], input2: [2.]}))
+ print(sess.run(output, feed_dict={input1: [7.], input2: [2.]}))
0 commit comments