Py-faster-rcnn: cython_bbox.py seems to be missing

Created on 5 Dec 2016  路  5Comments  路  Source: rbgirshick/py-faster-rcnn

$ python2 train_net.py
Traceback (most recent call last):
File "train_net.py", line 15, in
from datasets.factory import get_imdb
File "/home/users/xxx/work/py-faster-rcnn/tools/../lib/datasets/factory.py", line 12, in
from datasets.pascal_voc import pascal_voc
File "/home/users/xxx/work/py-faster-rcnn/tools/../lib/datasets/pascal_voc.py", line 9, in
from datasets.imdb import imdb
File "/home/users/xxx/work/py-faster-rcnn/tools/../lib/datasets/imdb.py", line 11, in
from utils.cython_bbox import bbox_overlaps
ImportError: No module named cython_bbox

It seems cython_bbox.py is not in the repository and the scripts can't be run.

All 5 comments

copy the cython_bbox.pyd in you build output to lib\utils

Can you please upload cython_bbox.pyd. Because I didn't find it anywhere. I didn't understand what do you mean by build output. I'm trying to evaluate the performance of my model on custom dataset

Search the 'cython_bbox.pyd' in the /lib/build/ folder, and you will find it. Then copy it to /lib/utils. Have a try.

Actually I don't have py-faster_rcnn installed. I trained my model on custom dataset using yolo and want to use faster_rcnn tools to calculate mAP. So, if you have it installed, please share it. Thanks in advance

OK. You can find the file here. I have commited it yet, hope it helpful to you!

Was this page helpful?
0 / 5 - 0 ratings