FastMaskRCNN
FastMaskRCNN copied to clipboard
When I train the train.py,I meet the error:ImportError: /home/zhao/hao/2017/FastFPN-master/train/../libs/boxes/cython_nms.so: cannot open shared object file: No such file or directory
Please tell me how solve it
got the same problem
how to solve it
Did you run make
in ./libs/datasets/pycocotools
and ./libs
?
How to solve it?
I'm having the same issue. I did run make in ./libs/datasets/pycocotools and in ./libs. Has anyone been able to resolve it/didn't get the error?
Solved: The issue is that if you go to ../libs/boxes/ you will see that cython_nms.so is in fact cython_nms.blahblah.so where blahblah is info related to your system. Simply rename this file to cython_nms.so
Similarly, rename cython_anchor.so, cython_bbox.so, and cython_bbox_transform.so
Hope that helps!