FunctionsliceInfo(
xShape: number[], begin: number[], end: number[], strides: number[],
beginMask: number, endMask: num
tfjs-core/src/ops/slice_util.ts:421
FunctionsparseSegmentMean_* Computes the mean along sparse segments of a tensor. * * ```js * const c = tf.tensor2d([[1,2,3,4], [-1,-2,-3,-4], [6,7,8,9]]); * // Select two r
tfjs-core/src/ops/sparse/sparse_segment_mean.ts:59
FunctionsparseSegmentSum_* Computes the sum along sparse segments of a tensor. * * ```js * const c = tf.tensor2d([[1,2,3,4], [-1,-2,-3,-4], [5,6,7,8]]); * // Select two ro
tfjs-core/src/ops/sparse/sparse_segment_sum.ts:59
Functionsqueeze_* Removes dimensions of size 1 from the shape of a `tf.Tensor`. * * ```js * const x = tf.tensor([1, 2, 3, 4], [1, 1, 4]); * x.squeeze().print();
tfjs-core/src/ops/squeeze.ts:41