-
Notifications
You must be signed in to change notification settings - Fork 39
/
train_db.sh
30 lines (26 loc) · 1.12 KB
/
train_db.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
exp_name="baseline"
gpu=-1
ratio=1
resolution=-1
appearance_dim=0
fork=2
base_layer=12
visible_threshold=0.9
dist2level="round"
update_ratio=0.2
progressive="True"
dist_ratio=0.999 #0.99
levels=-1
init_level=-1
extra_ratio=0.25
extra_up=0.01
# example:
./train.sh -d 'db/drjohnson' -l ${exp_name} --gpu ${gpu} -r ${resolution} --ratio ${ratio} --appearance_dim ${appearance_dim} \
--fork ${fork} --visible_threshold ${visible_threshold} --base_layer ${base_layer} --dist2level ${dist2level} --update_ratio ${update_ratio} \
--progressive ${progressive} --levels ${levels} --init_level ${init_level} --dist_ratio ${dist_ratio} \
--extra_ratio ${extra_ratio} --extra_up ${extra_up} &
sleep 20s
./train.sh -d 'db/playroom' -l ${exp_name} --gpu ${gpu} -r ${resolution} --ratio ${ratio} --appearance_dim ${appearance_dim} \
--fork ${fork} --visible_threshold ${visible_threshold} --base_layer ${base_layer} --dist2level ${dist2level} --update_ratio ${update_ratio} \
--progressive ${progressive} --levels ${levels} --init_level ${init_level} --dist_ratio ${dist_ratio} \
--extra_ratio ${extra_ratio} --extra_up ${extra_up} &