我正在尝试在 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