Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,137 Bytes
6064267 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
#!/bin/bash
nohup python scripts/train.py configs/base.yaml --where modal \
--update configs/regression/base.yaml \
--update configs/regression/modal.yaml \
--update configs/regression/dm/mse-dm-a.yaml \
--update configs/compare/5k_steps.yaml \
> logs/mse-dm-a.log 2>&1 &
nohup python scripts/train.py configs/base.yaml --where modal \
--update configs/regression/base.yaml \
--update configs/regression/modal.yaml \
--update configs/regression/dm/mse-dm-b.yaml \
--update configs/compare/5k_steps.yaml \
> logs/mse-dm-b.log 2>&1 &
nohup python scripts/train.py configs/base.yaml --where modal \
--update configs/regression/base.yaml \
--update configs/regression/modal.yaml \
--update configs/regression/dm/mse-dm-c.yaml \
--update configs/compare/5k_steps.yaml \
> logs/mse-dm-c.log 2>&1 &
nohup python scripts/train.py configs/base.yaml --where modal \
--update configs/regression/base.yaml \
--update configs/regression/modal.yaml \
--update configs/regression/dm/mse-dm-d.yaml \
--update configs/compare/5k_steps.yaml \
> logs/mse-dm-d.log 2>&1 &
|