在这里尝试学习MXNET与“直毒品”。在线性代数张量上,我在运行时得到了类型错误,
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为什么会发生这种情况,我该如何解决?
发布于 2018-06-22 17:07:07
在这里讨论了解决方案:https://discuss.mxnet.io/t/reshape-error-calling-ctypes/1245/3
有帮助的是降级到mxnet1.2.0并升级到Python2.7.15。
https://stackoverflow.com/questions/50946913
复制相似问题