Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,478 Bytes
833555d 6064267 833555d 6064267 833555d 6064267 833555d 6064267 833555d 6064267 833555d 6064267 833555d 6064267 833555d 6064267 833555d 6064267 833555d 6064267 833555d 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 32 33 34 35 36 37 38 39 |
#!/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/mse.yaml \
# --update configs/compare/5k_steps.yaml \
# > logs/mse.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/triplet/mse-triplet-b.yaml \
--update configs/compare/5k_steps.yaml \
> logs/mse-triplet-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/triplet/mse-triplet-c.yaml \
--update configs/compare/5k_steps.yaml \
> logs/mse-triplet-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/triplet/mse-triplet-d.yaml \
--update configs/compare/5k_steps.yaml \
> logs/mse-triplet-d.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/triplet/mse-triplet-e.yaml \
--update configs/compare/5k_steps.yaml \
> logs/mse-triplet-e.log 2>&1 &
|