-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcpu_run.sh
15 lines (15 loc) · 1.35 KB
/
cpu_run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
for ((n=0;n<16;n++))
do
python3 train.py --encoding multi --learner linear --style ucb --nu 1 --lamdba 1 --inv full --dataset mushroom
python3 train.py --encoding multi --learner linear --style ts --nu 0.1 --lamdba 1 --inv full --dataset mushroom
python3 train.py --encoding multi --learner linear --style ucb --nu 1 --lamdba 1 --inv full --dataset shuttle
python3 train.py --encoding multi --learner linear --style ts --nu 0.1 --lamdba 1 --inv full --dataset shuttle
python3 train.py --encoding multi --learner linear --style ucb --nu 1 --lamdba 1 --inv full --dataset adult
python3 train.py --encoding multi --learner linear --style ts --nu 0.1 --lamdba 1 --inv full --dataset adult
python3 train.py --encoding multi --learner linear --style ucb --nu 1 --lamdba 1 --inv full --dataset MagicTelescope
python3 train.py --encoding multi --learner linear --style ts --nu 1 --lamdba 1 --inv full --dataset MagicTelescope
python3 train.py --encoding multi --learner linear --style ucb --nu 1 --lamdba 1 --inv full --dataset covertype
python3 train.py --encoding multi --learner linear --style ts --nu 1 --lamdba 1 --inv full --dataset covertype
python3 train.py --encoding multi --learner linear --style ucb --nu 10 --lamdba 1 --inv full --dataset letter
python3 train.py --encoding multi --learner linear --style ts --nu 0.1 --lamdba 1 --inv full --dataset letter
done