TensorFlow - tf.multiply和tf.matmul 区别
TensorFlow - tf.multiply和tf.matmul 区别flyfish# a# [[1, 2, 3],# [4, 5, 6]] a = tf.constant([1, 2, 3, 4, 5, 6], shape=[2, 3])# b1# [[ 7, 8],# [ 9, 10],# [11, 12]] b1 = tf.constant([7, 8,