0

我正在尝试在 mxnet 中使用 R-CNN。我有一个有效的 mxnet 安装。我使用 git pull 升级了它,所以我可以使用最新版本。然后我按照github repo中的说明安装附加依赖项并运行演示。之后我跑了这条线

bash script/vgg_voc07.sh 0,1

我收到错误消息:AttributeError: 'module' object has no attribute 'Proposal' when running RCNN train_end2end.py

这正是我所做的:

    1  cd mxnet
    2  git pull
    3  cd example/rcnn
    4  ls
    5  bash script/additional_deps.sh
    6  pip install matplotlib
    7  bash script/get_voc.sh
    8  bash script/get_pretrained_model.sh
    9  bash script/vgg_voc07.sh 0,1
   10  ls
   11  cd ..
   12  sed -i 's/EXTRA_OPERATORS =/EXTRA_OPERATORS = example\/rcnn\/operator/g' config.mk
   13  make -j"$(nproc)"
   14  cd example
   15  cd rcnn
   16  make
   17  bash script/vgg_voc07.sh 0,1

我还在github上发布了一个问题

4

1 回答 1

1

r-cnn git 存储库中必须有一些额外的 c/c++ 源文件。您最好将它们复制到名为“proposal”的 mxnet 源目录中,然后再次编译 mxnet。

于 2017-02-24T05:26:34.550 回答