tf.sparse.slice

View source on GitHub

Slice a SparseTensor based on the start and `size.

tf.sparse.slice(
    sp_input, start, size, name=None
)

For example, if the input is

input_tensor = shape = [2, 7]
[    a   d e  ]
[b c          ]

Graphically the output tensors are:

sparse.slice([0, 0], [2, 4]) = shape = [2, 4]
[    a  ]
[b c    ]

sparse.slice([0, 4], [2, 3]) = shape = [2, 3]
[ d e  ]
[      ]

Args:

Returns:

A SparseTensor objects resulting from splicing.

Raises: