What it does
# clone project
git clone https://github.com/KrishnaswamyLab/GRASSY
cd GRASSY
# run environment setup script
bash env_setup.shTrain model with default configuration
# train on CPU
python src/train.py trainer=cpu
# train on GPU
python src/train.py trainer=gpuTrain model with chosen experiment configuration from configs/experiment/
python src/train.py experiment=experiment_name.yamlYou can override any parameter from command line like this
python src/train.py trainer.max_epochs=20 data.batch_size=64