run_quant.sh 1.0 KB
Newer Older
Z
Zhen Wang 已提交
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 33 34 35 36 37 38 39
#!/usr/bin/env bash

export CUDA_VISIBLE_DEVICES=0

#MobileNet v1:
python quant.py \
       --model=MobileNet \
       --pretrained_model=../data/pretrain/MobileNetV1_pretrained \
       --use_gpu=True \
       --data_dir=../data/ILSVRC2012 \
       --batch_size=64 \
       --total_images=1281167 \
       --class_dim=1000 \
       --image_shape=3,224,224 \
       --model_save_dir=output/ \
       --lr_strategy=piecewise_decay \
       --num_epochs=10 \
       --lr=0.0001 \
       --act_quant_type=abs_max \
       --wt_quant_type=abs_max


#ResNet50:
#python quant.py \
#       --model=ResNet50 \
#       --pretrained_model=../data/pretrain/ResNet50_pretrained \
#       --use_gpu=True \
#       --data_dir=../data/ILSVRC2012 \
#       --batch_size=32 \
#       --total_images=1281167 \
#       --class_dim=1000 \
#       --image_shape=3,224,224 \
#       --model_save_dir=output/ \
#       --lr_strategy=piecewise_decay \
#       --num_epochs=10 \
#       --lr=0.0001 \
#       --act_quant_type=abs_max \
#       --wt_quant_type=abs_max