tensorflow::ops::SparseAddGrad
#include <sparse_ops.h>
Оператор градиента для операции SparseAdd.
Краткое описание
Операция SparseAdd вычисляет A + B, где A, B и сумма представлены как SparseTensor объекты. Эта операция принимает градиент по отношению к ненулевым значениям суммы и возвращает градиенты по отношению к ненулевым значениям A и B.
Аргументы:
- scope: Объект Scope
- backprop_val_grad: 1-D с формой
[nnz(sum)]. Градиент по отношению к ненулевым значениям суммы. - a_indices: 2-D. Индексы
indicesSparseTensorA, размер[nnz(A), ndims]. - b_indices: 2-D. Индексы
indicesSparseTensorB, размер[nnz(B), ndims]. - sum_indices: 2-D. Индексы
indicesсуммыSparseTensor, размер[nnz(sum), ndims].
Возвращаемое значение:
-
Outputa_val_grad: 1-D с формой[nnz(A)]. Градиент по отношению к ненулевым значениям A. -
Outputb_val_grad: 1-D с формой[nnz(B)]. Градиент по отношению к ненулевым значениям B.
| Конструкторы и деструкторы | |
|---|---|
SparseAddGrad(const ::tensorflow::Scope & scope, ::tensorflow::Input backprop_val_grad, ::tensorflow::Input a_indices, ::tensorflow::Input b_indices, ::tensorflow::Input sum_indices) |
| Общедоступные атрибуты | |
|---|---|
a_val_grad | |
b_val_grad | |
operation | |
Общедоступные атрибуты
a_val_grad
::tensorflow::Output a_val_grad
b_val_grad
::tensorflow::Output b_val_grad
операция
Operation operation
Общедоступные функции
SparseAddGrad
SparseAddGrad( const ::tensorflow::Scope & scope, ::tensorflow::Input backprop_val_grad, ::tensorflow::Input a_indices, ::tensorflow::Input b_indices, ::tensorflow::Input sum_indices )
© 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/versions/r2.9/api_docs/cc/class/tensorflow/ops/sparse-add-grad