svip-lab / impersonator

PyTorch implementation of our ICCV 2019 paper: Liquid Warping GAN: A Unified Framework for Human Motion Imitation, Appearance Transfer and Novel View Synthesis
https://svip-lab.github.io/project/impersonator
Other
1.72k stars 317 forks source link

There are some bugs ,how to modify the code?thanks! #24

Closed 853643520 closed 4 years ago

853643520 commented 4 years ago

C:\Users\1152>python D:\Pytorch\impersonator-master\demo_imitator.py --gpu_ids 1 Traceback (most recent call last): File "D:\Pytorch\impersonator-master\demo_imitator.py", line 6, in from models.imitator import Imitator File "D:\Pytorch\impersonator-master\models\imitator.py", line 8, in from utils.nmr import SMPLRenderer File "D:\Pytorch\impersonator-master\utils\nmr.py", line 6, in import neural_renderer as nr ModuleNotFoundError: No module named 'neural_renderer'

StevenLiuWen commented 4 years ago

@853643520 It need to install neural_renderer at first (as illustrated in READEME.md)

cd thirdparty/neural_renderer
python setup.py install

If you enncounter some problems with Windows platform when installing neural_renderer, please refer https://github.com/svip-lab/impersonator/issues/2

853643520 commented 4 years ago

OK,thanks a lot!