iPERDance / iPERCore

Liquid Warping GAN with Attention: A Unified Framework for Human Image Synthesis
https://iperdance.github.io/work/impersonator-plus-plus.html
Apache License 2.0
2.43k stars 316 forks source link

How to disable "personalisation" step? #137

Open norris9410 opened 2 years ago

norris9410 commented 2 years ago

Hi,

I am trying to reproduce the result of the impact of personalization. Does any one know how to disable the personalization step? I tried commented out the personalize(opt) in demo/run_imitator.py. But it doesnt help, what I get is only a "noisy" video.

`def run_imitator(opt):

1. prepreocess

successful = preprocess(opt)

if successful:
    # 2. personalization
    personalize(opt)
    # 3. imitate
    all_meta_outputs = imitate(opt)
else:
    all_meta_outputs = []

return all_meta_outputs`

The result video frames are shown belown.

frame1 frame2

These results do not match the results in the paper. Could anyone give me a hint how to disable the personalization step?