run.sh 3.5 KB
Newer Older
R
ruri 已提交
1 2 3 4 5 6 7 8
#Hyperparameters config
python train.py \
       --model=SE_ResNeXt50_32x4d \
       --batch_size=32 \
       --total_images=1281167 \
       --class_dim=1000 \
       --image_shape=3,224,224 \
       --model_save_dir=output/ \
R
root 已提交
9
       --with_mem_opt=True \
R
ruri 已提交
10 11 12 13 14 15 16 17 18 19 20 21
       --lr_strategy=piecewise_decay \
       --lr=0.1
#      >log_SE_ResNeXt50_32x4d.txt 2>&1 &

#AlexNet:
#python train.py \
#       --model=AlexNet \
#       --batch_size=256 \
#       --total_images=1281167 \
#       --class_dim=1000 \
#       --image_shape=3,224,224 \
#       --model_save_dir=output/ \
R
root 已提交
22
#       --with_mem_opt=True \
R
ruri 已提交
23 24 25 26 27 28 29 30 31 32 33 34
#       --lr_strategy=piecewise_decay \
#	--num_epochs=120 \
#       --lr=0.01

#VGG11:
#python train.py \
#       --model=VGG11 \
#       --batch_size=512 \
#       --total_images=1281167 \
#       --class_dim=1000 \
#       --image_shape=3,224,224 \
#       --model_save_dir=output/ \
R
root 已提交
35
#       --with_mem_opt=True \
R
ruri 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48
#       --lr_strategy=piecewise_decay \
#       --num_epochs=120 \
#       --lr=0.1


#MobileNet v1:
#python train.py \
#       --model=MobileNet \
#       --batch_size=256 \
#       --total_images=1281167 \
#       --class_dim=1000 \
#       --image_shape=3,224,224 \
#       --model_save_dir=output/ \
R
root 已提交
49
#       --with_mem_opt=True \
R
ruri 已提交
50 51 52 53
#       --lr_strategy=piecewise_decay \
#	--num_epochs=120 \
#       --lr=0.1

R
root 已提交
54 55 56 57 58 59 60 61 62 63 64
#python train.py \
#	--model=MobileNetV2 \
#	--batch_size=500 \
#	--total_images=1281167 \
#	--class_dim=1000 \
#	--image_shape=3,224,224 \
#	--model_save_dir=output/ \
#	--with_mem_opt=True \
#	--lr_strategy=cosine_decay \
#	--num_epochs=200 \
#	--lr=0.1
R
ruri 已提交
65 66 67 68 69 70 71 72
#ResNet50:
#python train.py \
#       --model=ResNet50 \
#       --batch_size=256 \
#       --total_images=1281167 \
#       --class_dim=1000 \
#       --image_shape=3,224,224 \
#       --model_save_dir=output/ \
R
root 已提交
73
#       --with_mem_opt=True \
R
ruri 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
#       --lr_strategy=piecewise_decay \
#	--num_epochs=120 \
#       --lr=0.1

#ResNet101:
#python train.py \
#       --model=ResNet101 \
#       --batch_size=256 \
#       --total_images=1281167 \
#       --class_dim=1000 \
#       --image_shape=3,224,224 \
#       --model_save_dir=output/ \
#       --with_mem_opt=False \
#       --lr_strategy=piecewise_decay \
#	--num_epochs=120 \
#       --lr=0.1

S
shippingwang 已提交
91 92 93 94 95 96 97 98 99
#ResNet152:
#python train.py \
#       --model=ResNet152 \
#       --batch_size=256 \
#       --total_images=1281167 \
#       --image_shape=3,224,224 \
#       --lr_strategy=piecewise_decay \
#       --lr=0.1 \
#       --num_epochs=120 \
100
#       --l2_decay=1e-4
S
shippingwang 已提交
101 102 103 104 105 106 107 108 109 110 111


#SE_ResNeXt50:
#python train.py \
#       --model=SE_ResNeXt50 \
#       --batch_size=400 \
#       --total_images=1281167 \
#       --image_shape=3,224,224 \
#       --lr_strategy=cosine_decay \
#       --lr=0.1 \
#       --num_epochs=200 \
112
#       --l2_decay=12e-5
S
shippingwang 已提交
113 114 115 116 117 118 119 120 121 122

#SE_ResNeXt101:
#python train.py \
#        --model=SE_ResNeXt101 \
#        --batch_size=400 \
#        --total_images=1281167 \
#        --image_shape=3,224,224 \
#        --lr_strategy=cosine_decay \
#        --lr=0.1 \
#        --num_epochs=200 \
123
#        --l2_decay=15e-5
S
shippingwang 已提交
124 125 126 127 128 129 130 131 132 133

#VGG11:
#python train.py \
#        --model=VGG11 \
#        --batch_size=512 \
#        --total_images=1281167 \
#        --image_shape=3,224,224 \
#        --lr_strategy=cosine_decay \
#        --lr=0.1 \
#        --num_epochs=90 \
134
#        --l2_decay=2e-4
S
shippingwang 已提交
135 136 137 138 139 140 141 142 143 144

#VGG13:
#python train.py
#        --model=VGG13 \          
#        --batch_size=256 \
#        --total_images=1281167 \
#        --image_shape=3,224,224 \
#        --lr_strategy=cosine_decay \
#        --lr=0.01 \
#        --num_epochs=90 \
145
#        --l2_decay=3e-4