-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_all.sh
executable file
·18 lines (12 loc) · 1.13 KB
/
run_all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash
set -e
CUDA_VISIBLE_DEVICES=0 python3.6 super_net/train_super_net.py -c configs/train_super_net.yml
CUDA_VISIBLE_DEVICES=0 python3.6 super_net/train_sub_net.py -c configs/train_sub_net_conv3x3_conv5x5.yml
CUDA_VISIBLE_DEVICES=0 python3.6 super_net/train_sub_net.py -c configs/train_sub_net_conv5x5_conv3x3.yml
CUDA_VISIBLE_DEVICES=0 python3.6 super_net/train_sub_net.py -c configs/train_sub_net_conv5x5_conv5x5.yml
CUDA_VISIBLE_DEVICES=0 python3.6 super_net/train_sub_net.py -c configs/train_sub_net_conv3x3_conv3x3.yml
CUDA_VISIBLE_DEVICES=0 python3.6 super_net/validate_sampled_nets.py -c configs/train_super_net.yml -d results.txt
CUDA_VISIBLE_DEVICES=0 python3.6 super_net/validate_sub_nets.py -c configs/train_sub_net_conv3x3_conv3x3.yml -d results.txt
CUDA_VISIBLE_DEVICES=0 python3.6 super_net/validate_sub_nets.py -c configs/train_sub_net_conv3x3_conv5x5.yml -d results.txt
CUDA_VISIBLE_DEVICES=0 python3.6 super_net/validate_sub_nets.py -c configs/train_sub_net_conv5x5_conv5x5.yml -d results.txt
CUDA_VISIBLE_DEVICES=0 python3.6 super_net/validate_sub_nets.py -c configs/train_sub_net_conv5x5_conv3x3.yml -d results.txt