我刚刚在Azure上建立了一个新的Data Science虚拟机。我想从中运行脚本FasterRCNN.py https://github.com/karolzak/CNTK-Hotel-pictures-classificator 但收到错误:
来自utils.rpn.rpn_helpers的导入create_rpn,create_proposal_target_layer
ImportError:没有名为' utils.rpn'
的模块
我运行脚本的环境安装了Python 3.4和CNTK 2.1。
我尝试将 Detection 或 Detection / utils 目录(通过编辑〜。/ bashrc )添加到PYTHONPATH:
export PYTHONPATH =" $ PYTHONPATH:/ home / username / CNTK-Hotel-pictures-classificator / Detection"
如描述 https://github.com/Microsoft/CNTK/issues/2705 但错误仍然存在。
更新: Screenshot
答案 0 :(得分:0)
如果有人在挣扎:
该问题的解决方案是在__init__.py
目录中创建一个空的utils
文件。