-
Notifications
You must be signed in to change notification settings - Fork 4.1k
I got the error when running demo.py #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Did you run |
Oh, I'm sorry. I really enjoy using your 'fast-rcnn'. |
Fix CPU mode in Python demo
Hi, I already run python setup.py file (Lib folder) without using Make file is there any problem with that?? Thank you |
I'm also facing the same issue even though I have done make already. Please help |
I faced the same problem too ?anyone solved it ? |
Traceback (most recent call last): |
I was facing the same error while trying to use RCNN in CPU-only mode. I fixed it by going to /FRCNN/py-faster-rcnn/lib/fast_rcnn/nms_wrapper.py and changing the code as follows:
Commented out GPU-specific lines. |
This holds also for py-R-FCN if run in CPU mode. |
So GPU mode is still not solved? I want to run on GPU, but can't go over the "ImportError: No module named nms.gpu_nms " I have run make all over, and i think my caffe has all the paths set right (python and all) because it builds right. :( |
same here for gpu. Is there any solution? |
how can detect multiple object on same image using demo.py ???????????? |
The issue most likely is that the setup.py file did not locate your cuda directory, so make sure that CUDAHOME env variable is pointing to the right directory, and make again. |
I face the error " image not found",anyone knows how to solve it. thanks! |
@deshanadesai : or a cleaner solution when the folloxing problem occurs: 'ImportError: No module named gpu_nms'
|
Anyone solved the problem yet? |
try this |
@msha096 |
Did you make successfully? and what is your gcc and cuda version?
…On Mon, May 27, 2019 at 3:50 AM 王兴 ***@***.***> wrote:
@msha096 <https://github.com/msha096>
I tried your method, but there was a mistake.
"CompileError: command 'gcc' failed with exit status 1\n"
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#8?email_source=notifications&email_token=AIGEL5IOCVNGFBTQYYXQAO3PXOHD5A5CNFSM4BS4JES2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODWJB6FY#issuecomment-496115479>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AIGEL5PGIZINKATF6FTTBPDPXOHD5ANCNFSM4BS4JESQ>
.
|
@msha096 cuda:8.0,gcc:4.9.3,I succeeded in another way. |
How do you deal with it? I also face the problem! |
@Chida15 You can switch to the Lib file, make |
hello all i am beginner in this field and i want to run the code when i ran it i got this error ModuleNotFoundError Traceback (most recent call last) ModuleNotFoundError: No module named 'fast_rcnn' what should i do to fix it, |
Same Problem with Any one who have solved this problem yet? |
I am also facing same issue : |
please use python 3.7.5, 3.7.4 python gpu_nms run failed. |
I'm having the same problem :D
This is what my nms folder looks like:
|
Hi.
I already successfully run fast-rcnn code written by the same author of this.
Then, I would like to try to use faster-rcnn..
However, when I run demo.py, I got this error.
'''
Traceback (most recent call last):
File "./demo.py", line 18, in
from fast_rcnn.test import im_detect
File ".../py-faster-rcnn-master/tools/../lib/fast_rcnn/test.py", line 17, in
from fast_rcnn.nms_wrapper import nms
File ".../py-faster-rcnn-master/tools/../lib/fast_rcnn/nms_wrapper.py", line 11, in
from nms.gpu_nms import gpu_nms
ImportError: No module named gpu_nms
'''
Anyone has any idea about this error?
Thank you.
The text was updated successfully, but these errors were encountered: