| 12345678910111213141516171819202122232425262728293031 |
- # View more python learning tutorial on my Youtube and Youku channel!!!
- # Youtube video tutorial: https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg
- # Youku video tutorial: http://i.youku.com/pythontutorial
- """
- Please note, this code is only for python 3+. If you are using python 2+, please modify the code accordingly.
- """
- from __future__ import print_function
- import tensorflow as tf
- matrix1 = tf.constant([[3, 3]])
- matrix2 = tf.constant([[2],
- [2]])
- product = tf.matmul(matrix1, matrix2) # matrix multiply np.dot(m1, m2)
- # method 1
- sess = tf.Session()
- result = sess.run(product)
- print(result)
- sess.close()
- # method 2
- with tf.Session() as sess:
- result2 = sess.run(product)
- print(result2)
|