Caffe install getting ImportError: DLL load failed: The specified module could not be found

Caffe install getting ImportError: DLL load failed: The specified module could not be found

我正在尝试编译 运行 发布的片段 here,这基本上可以让我可视化网络内部结构(特征图)。
我已经使用 caffe-windows 分支成功编译了 caffepycaffe,并且我已经将 caffe 文件夹复制到 T:\Anaconda\Lib\site-packages 文件夹中。 然而,当我尝试 运行 jupyter notebook 中的这段代码时:

import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline

# Make sure that caffe is on the python path:
caffe_root = 'TC:/Caffe/'  # this file is expected to be in {caffe_root}/examples
import sys
sys.path.insert(0, caffe_root + 'python')

import caffe

plt.rcParams['figure.figsize'] = (10, 10)
plt.rcParams['image.interpolation'] = 'nearest'
plt.rcParams['image.cmap'] = 'gray'

import os
if not os.path.isfile(caffe_root + 'models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel'):
    print("Downloading pre-trained CaffeNet model...")
    !../scripts/download_model_binary.py ../models/bvlc_reference_caffenet

我收到以下错误:

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-1-e7a8ec94e861> in <module>()
      8 sys.path.insert(0, caffe_root + 'python')
      9 
---> 10 import caffe

L:\Anaconda2\lib\site-packages\caffe\__init__.py in <module>()
----> 1 from .pycaffe import Net, SGDSolver
      2 from ._caffe import set_mode_cpu, set_mode_gpu, set_device, Layer, get_solver
      3 from .proto.caffe_pb2 import TRAIN, TEST
      4 from .classifier import Classifier
      5 from .detector import Detector

L:\Anaconda2\lib\site-packages\caffe\pycaffe.py in <module>()
     11 import numpy as np
     12 
---> 13 from ._caffe import Net, SGDSolver
     14 import caffe.io
     15 

ImportError: DLL load failed: The specified module could not be found.

这里有什么问题吗?

备注:
我正在使用 Anaconda2-2.4.1-Windows-x86_64.exe

很可能存在您未发现的更具体的依赖性问题 (Protobuf / OpenCV)。首先尝试使用 C++ API 加载示例并确保所有 DLL 的加载。然后您可以更加自信地将范围缩小到 Python 一侧。我根据您正在使用的分支推荐更新的 windows caffe 说明:

https://initialneil.wordpress.com/2015/01/11/build-caffe-in-windows-with-visual-studio-2013-cuda-6-5-opencv-2-4-9/

我必须按照上面的详细说明进行完全重建(请注意,使用 NuGet 更容易找到一些依赖项)。还要在上述博客中的各种 3rdParty.zip 文件中寻找正确的 protobuf 二进制文件。

如果您可以使用 Caffe 的快照版本并且不需要修改项目本身,则以下二进制文件更易于安装和运行:

https://initialneil.wordpress.com/2015/07/15/caffe-vs2013-opencv-in-windows-tutorial-i/