zjhuang22 / maskscoring_rcnn

Codes for paper "Mask Scoring R-CNN".
MIT License
1.9k stars 378 forks source link

I encountered some problems during test #41

Open WY51BE opened 5 years ago

WY51BE commented 5 years ago

(maskrcnn) wuyi@nclab:~/github/maskscoring_rcnn/tools$ python test_net.py Traceback (most recent call last): File "test_net.py", line 12, in from maskrcnn_benchmark.engine.inference import inference File "/media/dat1/users/master/2019/wuyi/github/maskscoring_rcnn/maskrcnn_benchmark/engine/inference.py", line 20, in from maskrcnn_benchmark.structures.boxlist_ops import boxlist_iou File "/media/dat1/users/master/2019/wuyi/github/maskscoring_rcnn/maskrcnn_benchmark/structures/boxlist_ops.py", line 6, in from maskrcnn_benchmark.layers import nms as _box_nms File "/media/dat1/users/master/2019/wuyi/github/maskscoring_rcnn/maskrcnn_benchmark/layers/init.py", line 8, in from .nms import nms File "/media/dat1/users/master/2019/wuyi/github/maskscoring_rcnn/maskrcnn_benchmark/layers/nms.py", line 3, in from maskrcnn_benchmark import _C ImportError: /media/dat1/users/master/2019/wuyi/github/maskscoring_rcnn/maskrcnn_benchmark/_C.cpython-36m-x86_64-linux-gnu.so: undefined symbol: _Z20ROIPool_forward_cudaRKN2at6TensorES2_fii

I'm confused,can you help me with it?

zjhuang22 commented 5 years ago

Have you install maskrcnn_benchmark "python setup.py build develop"

WY51BE commented 5 years ago

Yes,i have done that. image I also read the Troubleshooting.md from maskrcnn-benchmark. My nvcc is “Cuda compilation tools, release 7.5, V7.5.17”,but my cuda is 8.0,Could it be caused by this?I don't have root access,I don't know how to modify nvcc.

zjhuang22 commented 5 years ago

I think the problem may be cuda 8.0. You can install cuda 9.0 locally and add to the env.

lingbo666 commented 5 years ago

@WY51BE hello, I am also confused about this problem, have you solved it? thanks in advance.