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()会话的主要内容,如果未能解决你的问题,请参考以下文章

Tensorflow 1.0—— Graph(图)和Session(会话)

3.3 TensorFlow运行模型 ------- 会话

Tensorflow运行模型——会话

Keras 中的 tensorflow 会话在哪里

tensorflow中的Session()和run()

模块“张量流”没有属性“会话”