[tensorflow] 多維矩陣的乘法

矩陣乘法本質上只能是兩個二維的matrix進行叉乘,那麼兩個三維甚至四維的矩陣相乘是怎麼作到的呢?python 好比:oop import tensorflow as tf a = tf.constant(1,2,3,4) b = tf.constant(1,2,4,6) c = tf.matmul(a,b) # c.shape == (1,2,3,6) 查看matmul的源碼:ui @tf_ex
相關文章
相關標籤/搜索