MXNET 重塑调用 ctypes
MXNET reshape calling ctypes
在这里尝试通过“The Straight Dope”学习 MXNET。在线性代数 - 张量上,当 运行、
时出现 ctypes 错误
X = nd.arange(24).reshape((2, 3, 4))
错误是,
C:\Anaconda2\lib\site-packages\mxnet\ndarray\ndarray.pyc in reshape(self, *shape, **kwargs)
1060 c_array(ctypes.c_int64, shape),
1061 reverse,
-> 1062 ctypes.byref(handle)))
1063 return NDArray(handle=handle, writable=self.writable)
1064
WindowsError: exception: access violation writing 0x00007FFB00000000
为什么会这样,我该如何解决?
在这里讨论了解决方案:https://discuss.mxnet.io/t/reshape-error-calling-ctypes/1245/3
有用的是降级到 mxnet 1.2.0 并升级到 Python 2.7.15。
在这里尝试通过“The Straight Dope”学习 MXNET。在线性代数 - 张量上,当 运行、
时出现 ctypes 错误X = nd.arange(24).reshape((2, 3, 4))
错误是,
C:\Anaconda2\lib\site-packages\mxnet\ndarray\ndarray.pyc in reshape(self, *shape, **kwargs)
1060 c_array(ctypes.c_int64, shape),
1061 reverse,
-> 1062 ctypes.byref(handle)))
1063 return NDArray(handle=handle, writable=self.writable)
1064
WindowsError: exception: access violation writing 0x00007FFB00000000
为什么会这样,我该如何解决?
在这里讨论了解决方案:https://discuss.mxnet.io/t/reshape-error-calling-ctypes/1245/3
有用的是降级到 mxnet 1.2.0 并升级到 Python 2.7.15。