tensorflow Session()会话
Posted francischeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tensorflow Session()会话相关的知识,希望对你有一定的参考价值。
session 是一个会话控制
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 s: result = s.run(product) print(result)
第二种方法类似于文件的with,他会在结束时候关闭session
以上是关于tensorflow Session()会话的主要内容,如果未能解决你的问题,请参考以下文章