hustzxd / BitSplit

BitSplit Post-trining Quantization

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BitSplit

BitSplit Post-trining Quantization

Code for papers:

  • 'Towards Accurate Post-training Network Quantization via Bit-Split and Stitching', ICML 2020

Bit-split is a novel post-training network quantization framework where no finetuning is needed.

A8W4 model for ResNet-18:

BaiduCloud Extraction Code: bsci

GoogleDrive

Train:

CUDA_VISIBLE_DEVICES=0,1 python main_quant_resnet18_twostep.py -a resnet18_quan --pretrained ~/data/cnn_models/pytorch/resnet/resnet18-5c106cde.pth --act-bit-width 8 --weight-bit-width 4

Test:

CUDA_VISIBLE_DEVICES=0,1 python main_quant_resnet18_twostep.py -a resnet18_quan --pretrained ./resnet18_quan/A8W4/state_dict.pth --scales resnet18_quan/A8W4/act_8_scales.npy --act-bit-width 8 --weight-bit-width 4 --evaluate 

Results:

\* Acc@1 69.146 Acc@5 88.670

Derivation of Eq.(5):

Eq.5

Related Papers

Please cite our paper if it helps your research:

@InProceedings{Wang_2020_ICML,
    author = {Wang, Peisong, Qiang Chen, Xiangyu He, and Cheng, Jian},
    title = {Towards Accurate Post-training Network Quantization via Bit-Split and Stitching},
    booktitle = {Proceedings of the 37nd International Conference on Machine Learning (ICML)},
    month = {July},
    pages = {243--252},
    year = {2020}
} 

About

BitSplit Post-trining Quantization

License:Apache License 2.0


Languages

Language:Python 100.0%