對變量引用應用稀疏更新。
用法
tf.raw_ops.ScatterUpdate(
ref, indices, updates, use_locking=True, name=None
)
參數
-
ref
一個可變的Tensor
。應該來自Variable
節點。 -
indices
一個Tensor
。必須是以下類型之一:int32
,int64
。ref
第一維的索引張量。 -
updates
一個Tensor
。必須與ref
具有相同的類型。要存儲在ref
中的更新值的張量。 -
use_locking
可選的bool
。默認為True
。如果為 True,則分配將受鎖保護;否則行為是未定義的,但可能表現出較少的爭用。 -
name
操作的名稱(可選)。
返回
-
一個可變的
Tensor
。具有與ref
相同的類型。
該操作計算
# Scalar indices
ref[indices, ...] = updates[...]
# Vector indices (for each i)
ref[indices[i], ...] = updates[i, ...]
# High rank indices (for each i, ..., j)
ref[indices[i, ..., j], ...] = updates[i, ..., j, ...]
此操作在更新完成後輸出ref
。這使得鏈接需要使用重置值的操作更容易。
如果 ref
中的值要更新一次以上,因為 indices
中有重複的條目,則每個值的更新順序是未定義的。
需要 updates.shape = indices.shape + ref.shape[1:]
或 updates.shape = []
。
另見 tf.batch_scatter_update
和 tf.scatter_nd_update
。
相關用法
- Python tf.raw_ops.ScatterNdUpdate用法及代碼示例
- Python tf.raw_ops.ScatterAdd用法及代碼示例
- Python tf.raw_ops.ScatterSub用法及代碼示例
- Python tf.raw_ops.ScatterDiv用法及代碼示例
- Python tf.raw_ops.ScatterNdSub用法及代碼示例
- Python tf.raw_ops.ScatterNdNonAliasingAdd用法及代碼示例
- Python tf.raw_ops.ScatterMul用法及代碼示例
- Python tf.raw_ops.ScatterMin用法及代碼示例
- Python tf.raw_ops.ScatterNdAdd用法及代碼示例
- Python tf.raw_ops.ScatterNd用法及代碼示例
- Python tf.raw_ops.ScatterMax用法及代碼示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代碼示例
- Python tf.raw_ops.Size用法及代碼示例
- Python tf.raw_ops.SparseCrossV2用法及代碼示例
- Python tf.raw_ops.Sub用法及代碼示例
- Python tf.raw_ops.SparseCross用法及代碼示例
- Python tf.raw_ops.SegmentMean用法及代碼示例
- Python tf.raw_ops.StringStrip用法及代碼示例
- Python tf.raw_ops.SparseConcat用法及代碼示例
- Python tf.raw_ops.SparseSegmentSumWithNumSegments用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.raw_ops.ScatterUpdate。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。