-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbatch_run.sh
More file actions
executable file
·32 lines (31 loc) · 1.74 KB
/
batch_run.sh
File metadata and controls
executable file
·32 lines (31 loc) · 1.74 KB
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
#!/bin/bash
#for idx in {1..3}
#do
# for deploy in master dist hydrodist hds hdvar
# do
# python train.py --epoch 1000 --adj binary --tag ms --deploy $deploy --wds anytown --budget 1 --batch 200
# python train.py --epoch 1000 --adj binary --tag ms --deploy $deploy --wds ctown --budget 5 --batch 120
# python train.py --epoch 1000 --adj binary --tag ms --deploy $deploy --wds richmond --budget 10 --batch 50
# done
#done
#for idx in {1..15}
#do
# python train.py --epoch 1000 --adj binary --tag ms --deploy xrandom --deterministic --wds anytown --budget 1 --batch 200
# python train.py --epoch 1000 --adj binary --tag ms --deploy xrandom --deterministic --wds ctown --budget 5 --batch 120
# python train.py --epoch 1000 --adj binary --tag ms --deploy xrandom --deterministic --wds richmond --budget 10 --batch 50
#done
for idx in {1..3}
do
for deploy in master dist hydrodist hds hdvar
do
python test_Taylor_metrics_for_sensor_placement.py --runid $idx --adj binary --tag ms --deploy $deploy --wds anytown --budget 1 --batch 200
python test_Taylor_metrics_for_sensor_placement.py --runid $idx --adj binary --tag ms --deploy $deploy --wds ctown --budget 5 --batch 120
python test_Taylor_metrics_for_sensor_placement.py --runid $idx --adj binary --tag ms --deploy $deploy --wds richmond --budget 10 --batch 50
done
done
for idx in {1..15}
do
python test_Taylor_metrics_for_sensor_placement.py --runid $idx --adj binary --tag ms --deploy xrandom --wds anytown --budget 1 --batch 200
python test_Taylor_metrics_for_sensor_placement.py --runid $idx --adj binary --tag ms --deploy xrandom --wds ctown --budget 5 --batch 120
python test_Taylor_metrics_for_sensor_placement.py --runid $idx --adj binary --tag ms --deploy xrandom --wds richmond --budget 10 --batch 50
done