如何使用Sigmoid在TensorFlow中进行切片分配

时间:2018-12-07 18:04:15

标签: numpy tensorflow neural-network deep-learning sigmoid

当我在图形中使用它时,我正尝试将我的np代码转换为tf。我有一个问题,下面的np语句如何简单地在tf中完成呢?我尝试过,但TF不允许切片分配。

netout[..., 4] = sigmoid(netout[..., 4])(sigmoid是用np编写的函数)

我尝试过像tf.assign(netout [...,4],tf.sigmoid(netout [...,4]),但这不起作用。

0 个答案:

没有答案