-
Notifications
You must be signed in to change notification settings - Fork 71
/
a_freq_task.sh
executable file
·30 lines (27 loc) · 1.75 KB
/
a_freq_task.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
#!/bin/bash
set -e
EPOCHS=70
for i in `seq 1 5`
do
# Async
python freq_task.py --seed $i --num_epochs $EPOCHS --patience $EPOCHS \
--model_type plstm --batch_norm 0 --batch_size 32 --sample_regularly 0 --sample_res 0.0
python freq_task.py --seed $i --num_epochs $EPOCHS --patience $EPOCHS \
--model_type lstm --batch_norm 1 --batch_size 32 --sample_regularly 0 --sample_res 0.0
python freq_task.py --seed $i --num_epochs $EPOCHS --patience $EPOCHS \
--model_type lstm --batch_norm 0 --batch_size 32 --sample_regularly 0 --sample_res 0.0
# Resolution 1
python freq_task.py --seed $i --num_epochs $EPOCHS --patience $EPOCHS \
--model_type plstm --batch_norm 0 --batch_size 32 --sample_regularly 1 --sample_res 1.0
python freq_task.py --seed $i --num_epochs $EPOCHS --patience $EPOCHS \
--model_type lstm --batch_norm 1 --batch_size 32 --sample_regularly 1 --sample_res 1.0
python freq_task.py --seed $i --num_epochs $EPOCHS --patience $EPOCHS \
--model_type lstm --batch_norm 0 --batch_size 32 --sample_regularly 1 --sample_res 1.0
# Resolution .1
python freq_task.py --seed $i --num_epochs $EPOCHS --patience $EPOCHS \
--model_type plstm --batch_norm 0 --batch_size 32 --sample_regularly 1 --sample_res 0.1
python freq_task.py --seed $i --num_epochs $EPOCHS --patience $EPOCHS \
--model_type lstm --batch_norm 1 --batch_size 32 --sample_regularly 1 --sample_res 0.1
python freq_task.py --seed $i --num_epochs $EPOCHS --patience $EPOCHS \
--model_type lstm --batch_norm 0 --batch_size 32 --sample_regularly 1 --sample_res 0.1
done