File size: 187 Bytes
d2e7940 |
1 2 3 4 5 6 7 8 |
#!/bin/bash
# Shedule execution of many runs
# Run from root folder with: bash scripts/schedule.sh
python train.py trainer.max_epochs=5
python train.py trainer.max_epochs=10 logger=csv
|