tf.raw_ops.Split

Splits a tensor into num_split tensors along one dimension.

axisA Tensor of type int32. 0-D. The dimension along which to split. Must be in the range [-rank(value), rank(value)).
valueA Tensor. The tensor to split.
num_splitAn int that is >= 1. The number of ways to split. Must evenly divide value.shape[split_dim].
nameA name for the operation (optional).

A list of num_split Tensor objects with the same type as value.