tf.raw_ops.ResourceScatterDiv
Делит разреженные обновления в переменную, на которую ссылается resource.
tf.raw_ops.ResourceScatterDiv(
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. Массив индексов в первом измерении ref. |
updates | A Tensor. Должен быть одного из следующих типов: float32, float64, int32, uint8, int16, int8, complex64, int64, qint8, quint8, qint32, bfloat16, uint16, complex128, half, uint32, uint64. Массив обновляемых значений для добавления к ref. |
name | Имя операции (необязательно). |
| Возвращаемое значение | |
|---|---|
| Созданная операция. |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/raw_ops/ResourceScatterDiv