简体   繁体   中英

TensorFlow 2.0: How to update tensors?

In TensorFlow 1.x, to update a tensor, I would use tf.scatter_update , to only update the relevant part of the tensor.

How can we do the same thing in TF 2.0?

You can use tf.tensor_scatter_nd_update() :

import tensorflow as tf
import numpy as np 

tensor = tf.convert_to_tensor(np.ones((2, 2)), dtype=tf.float32)
indices = tf.constant([[0, 0]])
updates = tf.constant([0.0])

tf.tensor_scatter_nd_update(tensor, indices, updates).numpy()
# array([[0., 1.],
#        [1., 1.]], dtype=float32)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM