-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpass.sh
30 lines (28 loc) · 2.94 KB
/
pass.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
# Linear UCB / TS
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
python3 train.py --encoding multi --learner linear --style ucb --nu 0.001 --lamdba 0.001 --inv diag --dataset mnist
python3 train.py --encoding multi --learner linear --style ts --nu 0.001 --lamdba 0.001 --inv diag --dataset mnist
python3 train.py --encoding multi --learner linear --style ucb --nu 0.001 --lamdba 0.001 --inv diag --dataset isolet
python3 train.py --encoding multi --learner linear --style ts --nu 0.001 --lamdba 0.001 --inv diag --dataset isolet
# Neural UCB / TS
python3 train.py --encoding multi --learner neural --style ucb --nu 0.00001 --lamdba 0.00001 --inv diag --dataset shuttle
python3 train.py --encoding multi --learner neural --style ts --nu 0.00001 --lamdba 0.00001 --inv diag --dataset shuttle
python3 train.py --encoding multi --learner neural --style ucb --nu 0.00001 --lamdba 0.00001 --inv diag --dataset mushroom
python3 train.py --encoding multi --learner neural --style ts --nu 0.00001 --lamdba 0.00001 --inv diag --dataset mushroom
python3 train.py --encoding multi --learner neural --style ucb --nu 0.00001 --lamdba 0.00001 --inv diag --dataset mnist
python3 train.py --encoding multi --learner neural --style ts --nu 0.00001 --lamdba 0.00001 --inv diag --dataset mnist
python3 train.py --encoding multi --learner kernel --style ucb --nu 0.1 --lamdba 1 --inv full --dataset mnist
python3 train.py --encoding multi --learner kernel --style ts --nu 0.01 --lamdba 1 --inv full --dataset mnist
python3 train.py --encoding multi --learner kernel --style ucb --nu 0.1 --lamdba 1 --inv full --dataset mushroom
python3 train.py --encoding multi --learner kernel --style ts --nu 0.01 --lamdba 1 --inv full --dataset mushroom