用法
scatter_nd_add(
indices, updates, name=None
)
參數
-
indices
要在操作中使用的索引。 -
updates
要在操作中使用的值。 -
name
操作的名稱。
返回
- 更新的變量。
對變量中的單個值或切片應用稀疏加法。
變量具有排名 P
和 indices
是排名 Q
的 Tensor
。
indices
必須是整數張量,包含對自身的索引。它必須是形狀 [d_0, ..., d_{Q-2}, K]
其中 0 < K <= P
。
indices
的最內維度(長度為 K
)對應於沿著 self 的第 K
維度的元素(如果是 K = P
)或切片(如果是 K < P
)的索引。
updates
是等級為 Q-1+P-K
的 Tensor
,形狀:
[d_0, ..., d_{Q-2}, self.shape[K], ..., self.shape[P-1]].
例如,假設我們要將 4 個分散的元素添加到 rank-1 張量到 8 個元素。在 Python 中,該更新將如下所示:
v = tf.Variable([1, 2, 3, 4, 5, 6, 7, 8])
indices = tf.constant([[4], [3], [1] ,[7]])
updates = tf.constant([9, 10, 11, 12])
v.scatter_nd_add(indices, updates)
print(v)
對 v 的更新結果如下所示:
[1, 13, 3, 14, 14, 6, 7, 20]
有關如何更新切片的更多詳細信息,請參閱tf.scatter_nd
。
相關用法
- Python tf.Variable.scatter_nd_sub用法及代碼示例
- Python tf.Variable.scatter_nd_update用法及代碼示例
- Python tf.Variable.__lt__用法及代碼示例
- Python tf.Variable.__pow__用法及代碼示例
- Python tf.Variable.__le__用法及代碼示例
- Python tf.Variable.initialized_value用法及代碼示例
- Python tf.Variable.__matmul__用法及代碼示例
- Python tf.Variable.ref用法及代碼示例
- Python tf.Variable.__getitem__用法及代碼示例
- Python tf.Variable.load用法及代碼示例
- Python tf.Variable.__gt__用法及代碼示例
- Python tf.Variable.__rpow__用法及代碼示例
- Python tf.Variable.__abs__用法及代碼示例
- Python tf.Variable.eval用法及代碼示例
- Python tf.Variable.__sub__用法及代碼示例
- Python tf.Variable.__rmatmul__用法及代碼示例
- Python tf.Variable.__rsub__用法及代碼示例
- Python tf.Variable.__ge__用法及代碼示例
- Python tf.Variable用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.Variable.scatter_nd_add。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。