Elea Zhong
triplet loss experiments (prelim)
6064267
raw
history blame
1.48 kB
#!/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 &