TensorFlow学习笔记2 Session的两种使用方式 1234567891011121314151617181920import tensorflow as tfmatrix1 = tf.constant([[3,3]])matrix2 = tf.constant([[2,2]])product = tf.matmul(matrix1,matrix2) # matrix multiply np.dot(m1,m2)# session的两种打开模式# method 1# sess = tf.Session()# result1 = sess.run(product)# print(result1)# sess.close()# method 2with tf.Session() as sess: result2 = sess.run(product) print(result2) 运行的结果 1[[12]] 计算机相关 > TensorFlow #计算机相关 #TensorFlow TensorFlow学习笔记2 http://yoursite.com/2019/09/03/计算机相关/TensorFlow/TensorFlow学习笔记(二)/ 作者 mohuani 发布于 2019年9月3日 许可协议 HTTPS 比 HTTP 更安全 上一篇 TensorFlow学习笔记1 下一篇