GatherΒΆ
Given data tensor of rank r >= 1, and indices tensor of rank q, gather entries of the axis dimension of data (by default outer-most one as axis=0) indexed by indices, and concatenates them in an output tensor of rank q + (r - 1). It is an indexing operation that indexes into the input dataβ¦
Abstract Signature:
Gather(data: Tensor, indices, axis: int)
JAX (Core)
API:
jax.numpy.take_along_axisStrategy: Plugin (gather_adapter)