facebookresearch / DetectAndTrack

The implementation of an algorithm presented in the CVPR18 paper: "Detect-and-Track: Efficient Pose Estimation in Videos"
Apache License 2.0
1k stars 186 forks source link

caffe2 does not have detectron module #75

Closed ks322181 closed 4 years ago

ks322181 commented 4 years ago

I tried to install caffe2 through pytorch. caffe is installing, When i am checking it is giving caffe is True. But caffe2 does not have detectron module.

make ops is throwing an error. So i wanted to copy file from lib to caffe2/module/detectron. But i didn't find it any where. Can anyone help me to resolve this..

Thanks in Advance

williamdwl commented 4 years ago

I have the same problem,Do you solve the problem? I need help

williamdwl commented 4 years ago

I salved by modified the following step: first step: find where is libcaffe2_detectron_ops_gpu.so

sudo find / -name libcaffe2_detectron_ops_gpu.so

then I modify the env.py by

prefixes = [_CMAKE_INSTALL_PREFIX, sys.prefix, sys.exec_prefix] + sys.path + ['/path/to/ libcaffe2_detectron_ops_gpu.so']
ks322181 commented 4 years ago

I salved by modified the following step: first step: find where is libcaffe2_detectron_ops_gpu.so

sudo find / -name libcaffe2_detectron_ops_gpu.so

then I modify the env.py by

prefixes = [_CMAKE_INSTALL_PREFIX, sys.prefix, sys.exec_prefix] + sys.path + ['/path/to/ libcaffe2_detectron_ops_gpu.so']

Hi,

Were you able to execute it . I have tried this but it still didn't fixed my error.

ks322181 commented 4 years ago

Are you able to run the algorithm?