嗨,我真正想要的是,如果我们有矩阵W和向量V,比如: V=[1,2,3,4]
W=[[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1]] 我们应该得到这样的结果: result=[[1,1,1,1],[2,2,2,2],[3,3,3,3],[4,4,4,4]] 我在网站上找到了这个方法: V = tf.constant([1,2,4], dtype=tf.float32)
W = tf.constant([[1,2,3,4],[1,2,3,4],[1,2,3,4]], dtype=tf.float32)
tf.multiply(tf.expand_dims(V,1