-
Notifications
You must be signed in to change notification settings - Fork 72
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
dockerfile error #4
Comments
Because you didn't clone the specific version of detectron.
|
What about seg_every_thing/lib make? It looks like detectron files are included in seg_every_thing/lib/core, etc. Are there additional instructions for make/install of seg_every_thing after Caffe2 and Detectron are installed? |
@carsonDB Hi! I downloaded the detectron with the version you mentioned above. However, i met a question. When i run the infer_simple.py, i was prompted that "No module named detectron.utils.collections". As we known, there is a lib folder, not a detectron folder. How can I solve this problem? |
Dockerfile errror.
There is no /detectron/lib directory. It should just be /detectron/
This :
WORKDIR /detectron/lib
RUN make
Should be this:
WORKDIR /detectron
RUN make
The text was updated successfully, but these errors were encountered: