forked from augustinharter/phyre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_all_flownet_setups.sh
executable file
·61 lines (54 loc) · 3.15 KB
/
run_all_flownet_setups.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/sh
#conda init bash
#conda activate phyre
for i in 0
do
if [ $1 = 'mix' ]
then
python solver.py --path VS-mix -train --folds 1 --foldstart $i -save -inspect --nper 100 --epochs 30 --lr 3e-3 --type withbase --train-mode WITHBASE
fi
if [ $1 = 'rad1' ]
then
echo "rad one"
python solver.py --path VS-uni-mean -train -save -inspect --radmode mean -uniformform
python solver.py --path VS-uni-median -train -save -inspect --radmode median -uniformform
python solver.py --path VS-uni-rand -train -save -inspect --radmode random -formform
fi
if [ $1 = 'rad2' ]
then
echo "rad two"
python solver.py --path VS-rad-mean -train -save -inspect --radmode mean
python solver.py --path VS-rad-median -train -save -inspect --radmode median
python solver.py --path VS-rad-rand -train -save -inspect --radmode random
fi
if [ $1 = 'one' ]
then
#python solver.py --path VS-withbase -train --folds 1 --foldstart $i -save -inspect --train-mode WITHBASE --type withbase
#python solver.py --path VS-dijkstra -train --folds 1 --foldstart $i -save -inspect -dijkstra
#python solver.py --path VS-templ-cons -train --folds 1 --foldstart $i -save -inspect --nper 32 -noshuff -pertempl
#python solver.py --path VS-task-cons -train --folds 1 --foldstart $i -save -inspect --nper 32 -noshuff
python solver.py --path VS-nper32 -train --folds 1 --foldstart $i -save -inspect --nper 32
python solver.py --path VS-nobase -train --folds 1 --foldstart $i -save -inspect --train-mode NOBASE --type nobase
python solver.py --path VS-direct -train --folds 1 --foldstart $i -save -inspect --train-mode DIRECT --type direct
fi
if [ $1 = 'two' ]
then
#python solver.py --path VS-dropout -train --folds 1 --foldstart $i -save -inspect -dropout
python solver.py --path VS-lr01 -train --folds 1 --foldstart $i -save -inspect --lr 3e-4
python solver.py --path VS-lr03 -train --folds 1 --foldstart $i -save -inspect --lr 1e-3
python solver.py --path VS-lr3 -train --folds 1 --foldstart $i -save -inspect --lr 3e-3
python solver.py --path VS-bs16 -train --folds 1 --foldstart $i -save -inspect --batchsize 16
python solver.py --path VS-bs64 -train --folds 1 --foldstart $i -save -inspect --batchsize 64
python solver.py --path VS-sched -train --folds 1 --foldstart $i -save -inspect -scheduled
fi
if [ $1 = 'three' ]
then
#python solver.py --path VS-x2 -train --folds 1 --foldstart $i -save -inspect --hidfac 2
#python solver.py --path VS-x4 -train --folds 1 --foldstart $i -save -inspect --hidfac 4
#python solver.py --path VS-x05 -train --folds 1 --foldstart $i -save -inspect --hidfac 0.5
#python solver.py --path VS-neck -train --folds 1 --foldstart $i -save -inspect --neckfak 2
#python solver.py --path VS-w128 -train --folds 1 --foldstart $i -save -inspect --width 128
python solver.py --path VS-base -train --folds 1 --foldstart $i -save -inspect
python solver.py --path VS-altconv -train --folds 1 --foldstart $i -save -inspect -altconv
fi
done