-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.sh
executable file
·35 lines (30 loc) · 855 Bytes
/
run.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
#!/bin/bash
detach=false
#at=self
#
#lv1=1
#lv2=2
#tag=l${lv1}${lv2}_d${detach}_at${at}
#echo ${tag}
#rm -rf tensorboard/$tag
#python resattvae_train.py --tag $tag --detach ${detach} --lv1 ${lv1} --lv2 ${lv2} --attentiontype ${at}
#
#lv1=3
#lv2=4
#tag=l${lv1}${lv2}_d${detach}_at${at}
#echo ${tag}
#rm -rf tensorboard/$tag
#python resattvae_train.py --tag $tag --detach ${detach} --lv1 ${lv1} --lv2 ${lv2} --attentiontype ${at}
at=SE
lv1=1
lv2=2
tag=l${lv1}${lv2}_d${detach}_at${at}
echo ${tag}
rm -rf tensorboard/$tag
python resattvae_train.py --tag $tag --detach ${detach} --lv1 ${lv1} --lv2 ${lv2} --attentiontype ${at} --batch_size 10000
lv1=3
lv2=4
tag=l${lv1}${lv2}_d${detach}_at${at}
echo ${tag}
rm -rf tensorboard/$tag
python resattvae_train.py --tag $tag --detach ${detach} --lv1 ${lv1} --lv2 ${lv2} --attentiontype ${at} --batch_size 10000