## Description See example below
## Environment info (Required) Ubuntu 18, python 3.6, pip-installed CPU-only version MXNet 1.3.0 ## Minimum reproducible example ```python mxnet.ndarray.array( numpy.arange(1).reshape([1, 1, 1]) ) # ok mxnet.ndarray.array( numpy.arange(1).reshape([1, 1]) ) # ok mxnet.ndarray.array( numpy.arange(1).reshape([1]) ) # ok mxnet.ndarray.array( numpy.arange(1).reshape([]) ) # last one fails: ValueError: Shape inconsistent: expected () vs got (1,) ``` MXNet does support zero-dimensional arrays, so this is the problem of importing. [ Full content available at: https://github.com/apache/incubator-mxnet/issues/12672 ] This message was relayed via gitbox.apache.org for [email protected]
