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/mdumpling/p/8094310.html