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

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
# download pretrain model
root_url="http://paddle-imagenet-models-name.bj.bcebos.com"
MobileNetV1="MobileNetV1_pretrained.zip"
ResNet50="ResNet50_pretrained.zip"
pretrain_dir='../pretrain'

if [ ! -d ${pretrain_dir} ]; then
  mkdir ${pretrain_dir}
fi

cd ${pretrain_dir}

if [ ! -f ${MobileNetV1} ]; then
    wget ${root_url}/${MobileNetV1}
    unzip ${MobileNetV1}
fi

if [ ! -f ${ResNet50} ]; then
    wget ${root_url}/${ResNet50}
    unzip ${ResNet50}
fi

cd -


Z
Zhen Wang 已提交
28
export CUDA_VISIBLE_DEVICES=0,1,2,3
Z
Zhen Wang 已提交
29 30 31 32

#MobileNet v1:
python quant.py \
       --model=MobileNet \
33
       --pretrained_fp32_model=${pretrain_dir}/MobileNetV1_pretrained \
Z
Zhen Wang 已提交
34 35
       --use_gpu=True \
       --data_dir=../data/ILSVRC2012 \
Z
Zhen Wang 已提交
36
       --batch_size=256 \
Z
Zhen Wang 已提交
37 38 39 40 41
       --total_images=1281167 \
       --class_dim=1000 \
       --image_shape=3,224,224 \
       --model_save_dir=output/ \
       --lr_strategy=piecewise_decay \
Z
Zhen Wang 已提交
42
       --num_epochs=20 \
Z
Zhen Wang 已提交
43 44 45 46 47 48 49 50
       --lr=0.0001 \
       --act_quant_type=abs_max \
       --wt_quant_type=abs_max


#ResNet50:
#python quant.py \
#       --model=ResNet50 \
51
#       --pretrained_fp32_model=${pretrain_dir}/ResNet50_pretrained \
Z
Zhen Wang 已提交
52 53
#       --use_gpu=True \
#       --data_dir=../data/ILSVRC2012 \
Z
Zhen Wang 已提交
54
#       --batch_size=128 \
Z
Zhen Wang 已提交
55 56 57 58 59
#       --total_images=1281167 \
#       --class_dim=1000 \
#       --image_shape=3,224,224 \
#       --model_save_dir=output/ \
#       --lr_strategy=piecewise_decay \
Z
Zhen Wang 已提交
60
#       --num_epochs=20 \
Z
Zhen Wang 已提交
61 62 63 64
#       --lr=0.0001 \
#       --act_quant_type=abs_max \
#       --wt_quant_type=abs_max