szha commented on issue #14064:
URL: 
https://github.com/apache/incubator-mxnet/issues/14064#issuecomment-665840709


   in 2.x we will focus on numpy array instead of ndarray. the np.split is now 
behaving consistently.
   ```
   In [15]: mx.np.split(a, 2)
   Out[15]: [array([[1., 1., 1.]]), array([[1., 1., 1.]])]
   
   In [16]: mx.np.split(a, 1)
   Out[16]:
   [array([[1., 1., 1.],
           [1., 1., 1.]])]
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to