This template can be used to run deep learning projects using pytorch
as a framework and wandb
for logging.
Training: From the root of this repo, run:
python main.py --config "config/<config_name>" --gpu <gpu_ids, comma separated> --mode train --restart <True/False>
Testing: Run
python main.py --config "config/<config_name>" --gpu <gpu_ids, comma separated> --mode train
torch
torchvision
wandb
yaml
Here goes all the the config information. Store them in a yaml
-file, which contains at least the subdicts general
and data
(see config/test_config.yaml
for an examplary file).
Here are all the different datasets and helper methods for data preprocessing. All datasets should inherit from the BaseDataset
-class from data/base_dataset.py
.
Here are all the different experiments, which should inherit from the Experiment
-class from experiments/experiment.py
.
Helper functions, metrics etc.
Network-architecures which are trained within the different experiments and their respective modules.