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

ImportError: No module named libfb.py #8

Closed Feynman27 closed 6 years ago

Feynman27 commented 6 years ago

I'm hitting an import error when trying to test with:

python launch.py \
    --cfg configs/video/2d_best/01_R101_best_hungarian-4GPU.yaml \
    --mode test \
    TEST.WEIGHTS pretrained_models/configs/video/2d_best/01_R101_best_hungarian.yaml/model_final.pkl
Traceback (most recent call last):
  File "tools/test_net.py", line 19, in <module>
    from core.rpn_generator import generate_rpn_on_range, generate_rpn_on_dataset
  File "/home/thomasbalestri/PlayGround/DetectAndTrack/lib/core/rpn_generator.py", line 21, in <module>
    from libfb.py import parutil
ImportError: No module named libfb.py

Is this file missing from the repo?

rohitgirdhar commented 6 years ago

Actually we don't use that import in this code anyway, so it can be safely commented out. I've updated the code.