You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
This issue is borrowed from https://discuss.gluon.ai/t/topic/3389.
It's caused by a bug in the gradient computation of
gather_nd
. Currently, the gradient ofgather_nd
isscatter_nd
, which has not considered the case that the indices may be the samehttps://github.com/apache/incubator-mxnet/blob/master/src/operator/tensor/indexing_op.h#L1156 . The correct way to implement it is to use the same backward logic as
take
.The correct result should be
@piiswrong @szha
The text was updated successfully, but these errors were encountered: