-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain.sh
35 lines (31 loc) · 811 Bytes
/
train.sh
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
#!/usr/bin/bash
CUDA_VISIBLE_DEVICES=1 python main.py \
--name backpack_new \
--base ./configs/kv_train/backpack.yaml \
--basedir ./kv_ckpt \
-t True \
--gpus 0,
CUDA_VISIBLE_DEVICES=1 python main.py \
--name cat_new \
--base ./configs/kv_train/cat.yaml \
--basedir ./kv_ckpt \
-t True \
--gpus 0,
CUDA_VISIBLE_DEVICES=1 python main.py \
--name dog5_new \
--base ./configs/dog5.yaml \
--basedir ./kv_ckpt \
-t True \
--gpus 0,
CUDA_VISIBLE_DEVICES=1 python main.py \
--name pot_new \
--base ./configs/kv_train/pot.yaml \
--basedir ./kv_ckpt \
-t True \
--gpus 0,
CUDA_VISIBLE_DEVICES=1 python main.py \
--name teddy_new \
--base ./configs/kv_train/teddy_bear.yaml \
--basedir ./kv_ckpt \
-t True \
--gpus 0,