Views
No views yet
| Model | Download | Download (with sample test data) | ONNX version | Opset version | Top-1 accuracy (%) | Top-5 accuracy (%) |
|---|---|---|---|---|---|---|
| AlexNet | 238 MB | 225 MB | 1.1 | 3 | ||
| AlexNet | 238 MB | 225 MB | 1.1.2 | 6 | ||
| AlexNet | 238 MB | 226 MB | 1.2 | 7 | ||
| AlexNet | 238 MB | 226 MB | 1.3 | 8 | ||
| AlexNet | 238 MB | 226 MB | 1.4 | 9 | ||
| AlexNet | 233 MB | 216 MB | 1.9 | 12 | 54.80 | 78.23 |
| AlexNet-int8 | 58 MB | 39 MB | 1.9 | 12 | 54.68 | 78.23 |
| AlexNet-qdq | 59 MB | 44 MB | 1.9 | 12 | 54.71 | 78.22 |
Compared with the fp32 AlextNet, int8 AlextNet's Top-1 accuracy drop ratio is 0.22%, Top-5 accuracy drop ratio is 0.05% and performance improvement is 2.26x.NoteDifferent preprocess methods will lead to different accuracies, the accuracy in table depends on this specific preprocess method.The performance depends on the test hardware. Performance data here is collected with Intel® Xeon® Platinum 8280 Processor, 1s 4c per instance, CentOS Linux 8.3, data batch size is 1.
data_0: float[1, 3, 224, 224]softmaxout_1: float[1, 1000]wget https://github.com/onnx/models/raw/main/vision/classification/alexnet/model/bvlcalexnet-12.onnx1bash run_tuning.sh --input_model=path/to/model \ # model path as *.onnx
2--config=alexnet.yaml \
3--data_path=/path/to/imagenet \
4--label_path=/path/to/imagenet/label \
5--output_model=path/to/save