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
/// Gather slices from `params` according to `indices`. `indices` must be an integer tensor of any dimension(often 1-D).
848
+
/// </summary>
849
+
/// <typeparam name="T1">Element type of the indexed tensor.</typeparam>
850
+
/// <typeparam name="T2">Element type of the index tensor.</typeparam>
851
+
/// <param name="params">The `Tensor` from which to gather values. Must be at least rank `axis + 1`.</param>
852
+
/// <param name="indices">The index `Tensor`. Must be one of the following types: `int32`, `int64`. The values must be in range `[0, params.shape[axis])`.</param>
853
+
/// <param name="name">A name for the operation (optional).</param>
854
+
/// <param name="axis">
855
+
/// A `Tensor`. Must be one of the following types: `int32`, `int64`.
856
+
/// The `axis` in `params` to gather `indices` from.Must be greater than or equal to `batch_dims`.
857
+
/// Defaults to the first non-batch dimension. Supports negative indexes.
858
+
/// </param>
859
+
/// <param name="batch_dims">An integer. The number of batch dimensions. Must be less than or equal to rank(indices).</param>
0 commit comments