forked from amathislab/DeepDraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain_all_autoencoder_task.sh
27 lines (22 loc) · 1.14 KB
/
train_all_autoencoder_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
echo "Training model on each dataset"
########## AUTOENCODER TASK
for j in {0..49..1} #20
do
echo "Attempt $i "
echo "Index $j "
let "end_idx=$j+1"
#Exp_id 20716
python3.6 train_all_autoencoder_task.py --type conv --arch_type spatial_temporal --exp_id 516 --start_id $j --end_id $end_idx --task autoencoder
python3.6 train_all_autoencoder_task.py --type conv --arch_type temporal_spatial --exp_id 516 --start_id $j --end_id $end_idx --task autoencoder
python3.6 train_all_autoencoder_task.py --type conv --arch_type spatiotemporal --exp_id 516 --start_id $j --end_id $end_idx --task autoencoder
done
for j in {0..49..1} #20
do
echo "Attempt $i "
echo "Index $j "
let "end_idx=$j+1"
#exp_id 20731
python3.6 train_all_autoencoder_task.py --type conv_new --arch_type spatial_temporal --exp_id 531 --start_id $j --end_id $end_idx --task autoencoder
python3.6 train_all_autoencoder_task.py --type conv_new --arch_type temporal_spatial --exp_id 531 --start_id $j --end_id $end_idx --task autoencoder
python3.6 train_all_autoencoder_task.py --type conv_new --arch_type spatiotemporal --exp_id 531 --start_id $j --end_id $end_idx --task autoencoder
done