pro_gan_pytorch

(β˜… 541)

Unofficial PyTorch implementation of the paper titled "Progressive growing of GANs for improved Quality, Stability, and Variation"

  • .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 Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
(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