1

尝试运行 python 脚本时出现以下错误:

Traceback (most recent call last): File "A1_GenerateInputROIs.py", line 5, in <module> import PARAMETERS File "C:\local\CNTK-2-0-beta9-0-Windows-64bit-CPU-Only\cntk\Examples\Image\Detection\FastRCNN\PARAMETERS.py", line 2, in <module> from cntk_helpers import * File "C:\local\CNTK-2-0-beta9-0-Windows-64bit-CPU-Only\cntk\Examples\Image\Detection\FastRCNN\cntk_helpers.py", line 7, in <module> from fastRCNN.nms import nms as nmsPython File "C:\local\CNTK-2-0-beta9-0-Windows-64bit-CPU-Only\cntk\Examples\Image\Detection\FastRCNN\fastRCNN\__init__.py", line 7, in <module> from .imdb import imdb File "C:\local\CNTK-2-0-beta9-0-Windows-64bit-CPU-Only\cntk\Examples\Image\Detection\FastRCNN\fastRCNN\imdb.py", line 19, in <module> from .utils3_win64.cython_bbox import bbox_overlaps ImportError: DLL load failed: The specified module could not be found.

我正在关注https://github.com/Microsoft/CNTK/wiki/Object-Detection-using-Fast-R-CNN上的教程。当我尝试在 ubuntu 系统上运行脚本时,我也遇到了类似的错误。

你认为问题出在哪里?

我正在探索的一个假设如下:

因为在教程中,它说:

本教程代码假设您使用的是 64 位版本的 Python 3.4,因为 utils_win64 下的 Fast R-CNN DLL 文件是为此版本预构建的

由于我使用的是 python 3.5 而不是 python 3.4,我开始认为这可能是原因。我会随时通知你我的发现。

谢谢

4

1 回答 1

2

您可以在 3.5 python 发行版中创建一个 3.4 env,如下所示。然后报告您是否看到相同的行为。

于 2017-01-23T21:57:41.887 回答