selimsef / dfdc_deepfake_challenge

A prize winning solution for DFDC challenge
MIT License
787 stars 209 forks source link

No module named 'VideoDataset' #7

Closed maymay1982 closed 4 years ago

maymay1982 commented 4 years ago

When I ran python preprocessing/detect_original_faces.py --root-dir DATA_ROOT, I encountered an error: Traceback (most recent call last): File "preprocessing/detect_original_faces.py", line 14, in import face_detector, VideoDataset ModuleNotFoundError: No module named 'VideoDataset' How can I solve this problem?

selimsef commented 4 years ago

that's because you don't include current path to python and python interpreter doesn't see these modules, just add PYTHONPATH=. python ... and it will fix the problem