To setup the environment, open a shell and run
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python src/main.py
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
To view the output in Tensorboard, run
tensorboard --logdir lightning_logs/
and go to http://localhost:6006.