faster-rcnn.pytorch icon indicating copy to clipboard operation
faster-rcnn.pytorch copied to clipboard

NMS is not functional

Open xwjBupt opened this issue 6 years ago • 3 comments

hi,i am using pytorch1.0,python3.6 and when i try to train on my on data,when it run at this line:

https://github.com/jwyang/faster-rcnn.pytorch/blob/aec4244532cd7affbc1f0cdbed81900ee8cacf3c/lib/model/rpn/proposal_layer.py#L147

it just stop running, and the stdout shows:

Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)

i have compiled the project as the README said :1st_place_medal:

cd lib
python setup.py build develop

and it did not report error what is wrong?

xwjBupt avatar May 03 '19 03:05 xwjBupt

@xwjBupt Hey, did you ever fix this issue? I am running into the same thing now trying to train on VOC2007 data.

MatthewInkawhich avatar Jun 06 '19 15:06 MatthewInkawhich

@MatthewInkawhich no,i did not fix the problem, so i change to the pytorch-0.4 branch and i did not appeared, hope this helps

xwjBupt avatar Jun 10 '19 01:06 xwjBupt

It seems the parameters in nms(proposals_single, scores_single.squeeze(1), nms_thresh) not match the problem def nms(dets, thresh, force_cpu=False) in nms_wrapper.py

yangxu351 avatar Jul 15 '22 11:07 yangxu351