标签: tensorflow
说我有
v1 = tf.Variable(tf.random_uniform(shape=[2,3]))
我想做像
v1[:,1] = tf.log( 1+tf.exp(v1[:,1]) )
在TensorFlow中无效。
如何将函数转换/应用于列?
答案 0 :(得分:1)
您可以将tf.slice用于张量的选择列,并tf.scatter_nd_update将其放回。
tf.slice
tf.scatter_nd_update