run_quant.sh 1.0 KB
Newer Older
Z
Zhen Wang 已提交
1 2
#!/usr/bin/env bash

Z
Zhen Wang 已提交
3
export CUDA_VISIBLE_DEVICES=0,1,2,3
Z
Zhen Wang 已提交
4 5 6 7

#MobileNet v1:
python quant.py \
       --model=MobileNet \
Z
Zhen Wang 已提交
8
       --pretrained_fp32_model=../data/pretrain/MobileNetV1_pretrained \
Z
Zhen Wang 已提交
9 10
       --use_gpu=True \
       --data_dir=../data/ILSVRC2012 \
Z
Zhen Wang 已提交
11
       --batch_size=256 \
Z
Zhen Wang 已提交
12 13 14 15 16
       --total_images=1281167 \
       --class_dim=1000 \
       --image_shape=3,224,224 \
       --model_save_dir=output/ \
       --lr_strategy=piecewise_decay \
Z
Zhen Wang 已提交
17
       --num_epochs=20 \
Z
Zhen Wang 已提交
18 19 20 21 22 23 24 25
       --lr=0.0001 \
       --act_quant_type=abs_max \
       --wt_quant_type=abs_max


#ResNet50:
#python quant.py \
#       --model=ResNet50 \
Z
Zhen Wang 已提交
26
#       --pretrained_fp32_model=../data/pretrain/ResNet50_pretrained \
Z
Zhen Wang 已提交
27 28
#       --use_gpu=True \
#       --data_dir=../data/ILSVRC2012 \
Z
Zhen Wang 已提交
29
#       --batch_size=128 \
Z
Zhen Wang 已提交
30 31 32 33 34
#       --total_images=1281167 \
#       --class_dim=1000 \
#       --image_shape=3,224,224 \
#       --model_save_dir=output/ \
#       --lr_strategy=piecewise_decay \
Z
Zhen Wang 已提交
35
#       --num_epochs=20 \
Z
Zhen Wang 已提交
36 37 38 39
#       --lr=0.0001 \
#       --act_quant_type=abs_max \
#       --wt_quant_type=abs_max