pro_gan_pytorch
Unofficial PyTorch implementation of the paper titled "Progressive growing of GANs for improved Quality, Stability, and Variation"
File Explorer
Download Latest Version (.zip)- __init__.py
- conftest.py
- test_custom_layers.py
- test_gan.py
- test_networks.py
- utils.py
- __init__.py
- custom_layers.py
- data_tools.py
- gan.py
- losses.py
- modules.py
- networks.py
- utils.py
- __init__.py
- compute_fid.py
- latent_space_interpolation.py
- train.py
- .gitignore
- celebA-HQ.gif
- .gitignore
- LICENSE.txt
- MANIFEST.in
- README.md
- README.rst
- requirements-dev.txt
- requirements.txt
- setup.py
# Installation Guide
1. Get the code
git clone https://github.com/akanimax/pro_gan_pytorch
Downloads the entire project code from GitHub to your computer.
cd pro_gan_pytorch
Moves into the project folder you just downloaded.
2. Python
Easy RecommendedPrerequisites
(your-machine):~$ python3 -m venv <env-store-path>/pro_gan_pth_env
Runs the Python script (or module).
(pro_gan_pth_env)(your-machine):~$ pip install pro-gan-pth
Installs the Python libraries listed in requirements.txt (or similar).
(your-machine):<path to project>$ python3 -m venv pro-gan-pth-dev-env
Runs the Python script (or module).
(pro-gan-pth-dev-env)(your-machine):<path to project>$ pip install -e .
Installs the Python libraries listed in requirements.txt (or similar).
(pro-gan-pth-dev-env)(your-machine):<path to project>$ pip install -r requirements-dev.txt
Installs the Python libraries listed in requirements.txt (or similar).
If it runs without errors and prints output in the terminal, it worked.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
