plural should be find ()

* plural should be find

plural should be find

* Update to mention matmul op output
This commit is contained in:
Leonard Lee 2016-11-04 01:57:33 +08:00 committed by Vijay Vasudevan
parent d131c5d35b
commit 832f5fa943

View File

@ -99,7 +99,7 @@ sess = tf.Session()
# The call 'run(product)' thus causes the execution of three ops in the
# graph: the two constants and matmul.
#
# The output of the op is returned in 'result' as a numpy `ndarray` object.
# The output of the matmul is returned in 'result' as a numpy `ndarray` object.
result = sess.run(product)
print(result)
# ==> [[ 12.]]