You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
~/mxnet/python/mxnet/numpy/multiarray.py in reshape(self, *args, **kwargs)
1141 if 'order' not in kwargs:
1142 raise TypeError('{} is an invalid keyword argument for this function'
-> 1143 .format(kwargs.keys()[0]))
1144 order = kwargs.pop('order', 'C')
1145 if order != 'C':
The cause is because the kwargs is not supported. However, the error message is not user-friendly