synthesiaresearch / humanrf

Official code for "HumanRF: High-Fidelity Neural Radiance Fields for Humans in Motion"
http://actors-hq.com
Other
449 stars 28 forks source link

ModuleNotFoundError: No module named 'actorshq.dataset.volumetric_dataset', and its solution #10

Closed ZhilinGuo closed 1 year ago

ZhilinGuo commented 1 year ago

I followed instructions and have successfully installed all the required packages (thank you for the very nicely-written README by the way). I also received the links for ActorsHQ dataset.

However, when I run the download command within the parent humanrf directory, I encountered this error:

ModuleNotFoundError: No module named 'actorshq.dataset.volumetric_dataset'

I added the below code snippet to the start of download_manager.py to solve this error.

import sys
sys.path
sys.path.append('./')