On this page
tf.raw_ops.Split
Splits a tensor into num_split tensors along one dimension.
tf.raw_ops.Split(
    axis, value, num_split, name=None
)
  | Args | |
|---|---|
axis | 
      A Tensor of type int32. 0-D. The dimension along which to split. Must be in the range [-rank(value), rank(value)). | 
     
value | 
      A Tensor. The tensor to split. | 
     
num_split | 
      An int that is >= 1. The number of ways to split. Must evenly divide value.shape[split_dim]. | 
     
name | 
      A name for the operation (optional). | 
| Returns | |
|---|---|
A list of num_split Tensor objects with the same type as value. | 
     
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
 https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/raw_ops/Split