mindspore.ops.GatherNd

class mindspore.ops.GatherNd[源代码]

根据索引获取输入Tensor指定位置上的元素。

更多参考详见 mindspore.ops.gather_nd()

支持平台:

Ascend GPU CPU

样例:

>>> op = ops.GatherNd()
>>> input_x = Tensor(np.array([[-0.1, 0.3, 3.6], [0.4, 0.5, -3.2]]), mindspore.float32)
>>> indices = Tensor(np.array([[0, 0], [1, 1]]), mindspore.int32)
>>> output = op(input_x, indices)
>>> print(output)
[-0.1  0.5]