eladrich / pixel2style2pixel

Official Implementation for "Encoding in Style: a StyleGAN Encoder for Image-to-Image Translation" (CVPR 2021) presenting the pixel2style2pixel (pSp) framework
https://eladrich.github.io/pixel2style2pixel/
MIT License
3.2k stars 568 forks source link

running environment #209

Closed stylebased closed 3 years ago

stylebased commented 3 years ago

Can you share the codes for building the running environment for your code? I spent a lot of time setting the environment. But I always meet inconsistency problems. Thanks

yuval-alaluf commented 3 years ago

The conda environment can be created by running:

conda env create --name envname --file=psp_env.yaml

where envname is the name you want to use for the environment and psp_env.yaml is the environment file provided in this repo.

stylebased commented 3 years ago

Thanks.