标签: tensorflow gradient
x = tf.placeholder("float", [None,3]) v = tf.Variable(tf.ones([3, 1])) w = tf.matmul(x,v)
sess.run
,w的大小未知。 如何根据w计算v中所有元素的渐变(在构建图形时计算jacobian)?
w
v