1. 程式人生 > >TensorFlow學習之——建立圖和啟動圖

TensorFlow學習之——建立圖和啟動圖

import tensorflow as tf

# 建立一個一行兩列的常量op(向量)
m1 = tf.constant([[3, 3]])
# 建立兩行一列的矩陣op
m2 = tf.constant([[2], [3]])
# 建立一個矩陣乘法的op
product = tf.matmul(m1, m2)
# 輸出
print(product)
# 定義一個繪畫啟動一個預設的Session
with tf.Session() as session:
    result = session.run(product)
    print(result)