If the sp_input.dense_shape[axis] is not an integer multiple of num_split
each slice starting from 0:shape[axis] % num_split gets extra one
dimension. For example, if axis = 1 and num_split = 2 and the
input is:
input_tensor=shape=[2,7][ade][bc]
Graphically the output tensors are:
output_tensor[0]=[a][bc]output_tensor[1]=[de][]
Args
keyword_required
Python 2 standin for * (temporary for argument reorder)
sp_input
The SparseTensor to split.
num_split
A Python integer. The number of ways to split.
axis
A 0-D int32Tensor. The dimension along which to split.
name
A name for the operation (optional).
split_dim
Deprecated old name for axis.
Returns
num_splitSparseTensor objects resulting from splitting value.
Raises
TypeError
If sp_input is not a SparseTensor.
ValueError
If the deprecated split_dim and axis are both non None.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[]]