tf.raw_ops.ResourceScatterAdd
Добавляет разреженные обновления к переменной, на которую ссылается resource.
tf.raw_ops.ResourceScatterAdd(
resource, indices, updates, name=None
)
Эта операция вычисляет
# 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, ...]
Дублирующиеся записи обрабатываются корректно: если несколько indices ссылаются на одно и то же местоположение, их вклады складываются.
Требует updates.shape = indices.shape + ref.shape[1:] или updates.shape = [].
| Аргументы | |
|---|---|
resource | A Tensor типа resource. Должен исходить из узла Variable. |
indices | A Tensor. Должен быть одного из следующих типов: int32, int64. A тензор индексов в первом измерении ref. |
updates | A Tensor. Должен быть одного из следующих типов: float32, float64, int32, uint8, int16, int8, complex64, int64, qint8, quint8, qint32, bfloat16, qint16, quint16, uint16, complex128, half, uint32, uint64. A тензор обновляемых значений, которые нужно добавить к ref. |
name | Имя операции (необязательно). |
| Возвращаемое значение | |
|---|---|
| Созданная операция. |
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/raw_ops/ResourceScatterAdd