cs8105 opened a new issue #18886: URL: https://github.com/apache/incubator-mxnet/issues/18886
`
In [26]: import mxnet as mx
In [27]: mx.__version__
Out[27]: '1.6.0'
In [28]: nd = mx.nd
In [29]: a = nd.arange(27).reshape((3,3,3))
In [30]: a.reshape((3,3))
Out[30]:
[[0. 1. 2.]
[3. 4. 5.]
[6. 7. 8.]]
<NDArray 3x3 @cpu(0)>
`
the the old shape (3,3,3) and new shape (3,3) is not in the same size.
is there some special purpose for this?
----------------------------------------------------------------
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:
[email protected]
