I think we don't need to change the current semantics. We can easily implement Tensorflow gather_nd with the mxnet gather_nd (and vice versa).
Here is a pseudo code: ``` tf_gather_nd(data, indices) = relay.gather_nd(data, transpose(indices, [N-1, 0, 1, ..., N-2])) ``` where N is the dimension of indices. The current tensorflow frontend doesn't do this conversion. I'll send a fix for this. --- [Visit Topic](https://discuss.tvm.ai/t/gather-nd-semantics/6243/2) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://discuss.tvm.ai/email/unsubscribe/29e910cb36923eb5654e3bc632554ede105c63fc9f4d08c21a4fc305bd20b8da).