我正在运行一些使用tensor.advanced_subtensor的theano代码 我收到以下错误:
NotImplementedError: Could not import inplace_increment, so some advanced indexing features are disabled. They will be available if you update NumPy to version 1.8 or later, or to the latest development version. You may need to clear the cache (theano-cache clear) afterwards.
我有最新版本的theano(0.6.0.dev-60b5ccc2bcabb1010714376764daf8a50722cee9)和numpy(1.8.0)。为什么我仍然会收到此错误?我该如何解决这个错误?如何清除theano缓存?
答案 0 :(得分:0)
如果你使用* ix,那么theano缓存通常在~/.theano/
。
答案 1 :(得分:0)
您需要清除Theano缓存。缓存在〜/ .theano / 文件夹中。 请按照以下步骤手动清除它。
import theano
print (theano.config.compiledir)
# and then delete directory returned from above.
如果您不想手动删除,请使用以下命令。
theano-cache purge