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?
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
When I ran
import face_detector, VideoDataset
ModuleNotFoundError: No module named 'VideoDataset'
How can I solve this problem?
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