在Neural Networks and Deep Learning中,有一个名为network3的对象(这是一个为python 2.7和theano 0.7编写的PY文件)。我将其修改为与python 3.6和theano 1.0.3一起运行。但是,当我运行以下代码时:
import network3
from network3 import Network
from network3 import ConvPoolLayer , FullyConnectedLayer , SoftmaxLayer
training_data , validation_data , test_data = network3.load_data_shared()
mini_batch_size = 10
net = Network([FullyConnectedLayer(n_in=784, n_out=100),
SoftmaxLayer(n_in=100, n_out=10)], mini_batch_size)
net.SGD(training_data , 60, mini_batch_size , 0.1, validation_data , test_data)
它返回了很多错误,它们具有类似的模式:
错误(theano.gof.opt):优化失败归因于:constant_folding
错误(theano.gof.opt):节点:MakeVector {dtype ='int64'}(TensorConstant {10},TensorConstant {100})
AttributeError:模块'numpy.core.multiarray'没有属性'_get_ndarray_c_version'
然后输出中的最后一段是:
AttributeError :(“在编译节点时发生以下错误”,
Elemwise{Composite{(i0 * (i1 + i2))}}(TensorConstant{10}, TensorConstant{1}, <TensorType(int64, scalar)>)
,“ \ n”,“模块'numpy.core.multiarray'没有属性'_get_ndarray_c_version'”)
我认为第1379行引起了错误:
1298 libraries=self.libraries(),
1299 header_dirs=self.header_dirs(),
-> 1300 c_compiler=self.c_compiler(),
1301 )
1302
~\AppData\Local\Continuum\Anaconda3\lib\site-packages\theano\gof\cc.py in cmodule_key_(self, fgraph, no_recycling, compile_args, libraries, header_dirs, insert_config_hash, c_compiler)
1377 # DynamicModule always add the include <numpy/arrayobject.h>
1378 sig.append('NPY_ABI_VERSION=0x%X' %
-> 1379 np.core.multiarray._get_ndarray_c_version())
1380 if c_compiler:
1381 sig.append('c_compiler_str=' + c_compiler.version_str())
AttributeError: ('The following error happened while compiling the node', Elemwise{Composite{(i0 * (i1 + i2))}}(TensorConstant{10}, TensorConstant{1}, <TensorType(int64, scalar)>), '\n', "module 'numpy.core.multiarray' has no attribute '_get_ndarray_c_version'")
我已经搜索了问题,但是找不到相关的解决方案。你能帮忙吗?
谢谢。
答案 0 :(得分:1)
您的numpy版本是什么?打开python终端,然后运行以下行from numpy import __version__
,然后运行print(__version__)
。在我使用的此函数的numpy版本(1.14.2
)中,定义明确。
有时,程序包更新可能会使某个功能贬值,甚至删除某个功能,但还可以提出一个新功能来替代较旧的功能。我不知道是否是这种情况,但请始终注意这种可能性。