Skip to content

mossbanay/debugging-a-gan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Debugging a GAN

Quick start guide

Setting up the environment

To setup the environment, open a shell and run

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Training on a CPU

python src/main.py

Training on a GPU

Pass the number of GPUs you want to use for training or -1 for all available GPUs. You can also pass in training parameters (to see which add --help).

python src/main.py --gpus -1 --max-epochs 100

Running tensorboard

To view the output in Tensorboard, run

tensorboard --logdir lightning_logs/

and go to http://localhost:6006.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages