-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathscript.sh
32 lines (22 loc) · 1.42 KB
/
script.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
31
32
export PYTHONPATH=$PYTHONPATH:$(pwd)
CUDA_VISIBLE_DEVICES=0 python main.py --shared layer2 --rotation_type expand \
--group_norm 8 \
--nepoch 150 --milestone_1 75 --milestone_2 125 \
--outf results/cifar10_layer2_gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 5 layer2 slow gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 5 layer2 online gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 4 layer2 slow gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 4 layer2 online gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 3 layer2 slow gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 3 layer2 online gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 2 layer2 slow gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 2 layer2 online gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 1 layer2 slow gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 1 layer2 online gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 0 layer2 slow gn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 0 layer2 online gn_expand
CUDA_VISIBLE_DEVICES=0 python main.py --shared layer2 --rotation_type expand \
--nepoch 75 --milestone_1 50 --milestone_2 65 \
--outf results/cifar10_layer2_bn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 5 layer2 slow bn_expand
CUDA_VISIBLE_DEVICES=0 python script_test_c10.py 5 layer2 online bn_expand