[深度學習筆記]TensorFlow-操作

導入 tensorflow: import tensorflow as tf 創建兩個常量 op: m1 = tf.constant([[3, 3]]) m2 = tf.constant([[2], [3]]) 創建一個矩陣乘法 op,把 m1 和 m2 傳入: product = tf.matmul(m1, m2) print(product) 打印 product 結果如下: Tensor("
相關文章
相關標籤/搜索