autonomousvision / stylegan-xl

[SIGGRAPH'22] StyleGAN-XL: Scaling StyleGAN to Large Diverse Datasets
MIT License
961 stars 113 forks source link

Conda environment has wrong dill version #74

Open syskn opened 2 years ago

syskn commented 2 years ago

Issue environment.yml has following dill version: dill=0.3.4

However, this version does not have _shims.py and crashes train.py when resuming from existing .pkl with the following error: ModuleNotFoundError: No module named 'dill._shims'

Suggested solution Change dill=0.3.4 in environment.yml to dill=0.3.5.1