seg_every_thing
seg_every_thing copied to clipboard
dockerfile error
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
Because you didn't clone the specific version of detectron. Change the following line: https://github.com/ronghanghu/seg_every_thing/blob/master/docker/Dockerfile#L19 Roll back version to the previous one:
RUN git clone https://github.com/facebookresearch/detectron /detectron \
&& cd /detectron \
&& git reset --hard 3c4c7f67d37eeb4ab15a87034003980a1d259c94
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? Looking forward to your help!