tf.multiply()和tf.matmul()区别

(1)tf.multiply是点乘,即Returns x * y element-wise.

(2)tf.matmul是矩阵乘法,即Multiplies matrix a by matrix b, producing a * b.

原文地址:https://www.cnblogs.com/Ph-one/p/9234652.html