tensorflow会话的两种打开方式

import tensorflow as tf

matrix1 = tf.constant([[3,3]]) # 生成常量矩阵
matrix2 = tf.constant([[2],[2]])
product = tf.matmul(matrix1,matrix2) #矩阵的乘法 numpy矩阵相乘形式: np.dot(m1,m2)

# 方法 1
sess = tf.Session() # 创建会话,Session是个object
result = sess.run(product) # 返回product的结果
print(result) # 打印结果
sess.close() # 关闭会话

# 输出 [[12]]

# 方法 2
with tf.Session() as sess:
    result2 = sess.run(product)
    print(result2)

# 输出 [[12]]

你可能感兴趣的:(tensorflow会话的两种打开方式)