03_基礎的Tensor OP

03_基礎的Tensor OP 1.矩陣乘法和向量乘法 2.均值和方差 3.隨機數生成 4.尋找極值 1.矩陣乘法和向量乘法 要分清楚本身要的是向量乘法仍是矩陣乘法。python 矩陣乘法:tf.matmul() 向量乘法:tf.Tensor * tf.Tensor # 矩陣乘法: c = tf.matmul(a,b) print(c.numpy()) ''' [[1 2] [1 2]] '''
相關文章
相關標籤/搜索