1、multiply(x,y,name=None)—实现元素级别的相乘
1)注意:x与y要有相同的数据类型,要是int都是int,要是float都是float,否则会因为数据类型不匹配而报错,看下面例子:
x=tf.constant([[1.0,2.0,3.0],[1.0,2.0,3.0],[1.0,2.0,3.0]])
y=tf.constant([[0,0,1],[0,0,1],[0,0,1]])
z = tf.multiply(x, y)
TypeError: Input 'y' of 'Mul' Op has type int32 that does not match type float32 of argument 'x'.
只要将y中的一个元素改为float形,则不会再报错:如y=tf.constant([[0,0,1.0],[0,0,1],[0,0,1]])。若x与y形状相同,则对应元素相乘,即使多维,也是如此,结果如下:[[ 0. 0. 3.]
[ 0. 0. 3.]
[ 0. 0. 3.]]