Views
No views yet
| Model | Download | Download (with sample test data) | ONNX version | Opset version | Top-1 accuracy (%) | Top-5 accuracy (%) |
|---|---|---|---|---|---|---|
| ZFNet-512 | 341 MB | 320 MB | 1.1 | 3 | ||
| ZFNet-512 | 341 MB | 320 MB | 1.1.2 | 6 | ||
| ZFNet-512 | 341 MB | 320 MB | 1.2 | 7 | ||
| ZFNet-512 | 341 MB | 318 MB | 1.3 | 8 | ||
| ZFNet-512 | 341 MB | 318 MB | 1.4 | 9 | ||
| ZFNet-512 | 333 MB | 309 MB | 1.9 | 12 | 55.97 | 79.41 |
| ZFNet-512-int8 | 83 MB | 48 MB | 1.9 | 12 | 55.84 | 79.33 |
| ZFNet-512-qdq | 84 MB | 56 MB | 1.9 | 12 | 55.83 | 79.42 |
Compared with the fp32 ZFNet-512, int8 ZFNet-512's Top-1 accuracy drop ratio is 0.23%, Top-5 accuracy drop ratio is 0.10% and performance improvement is 1.78x.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.
gpu_0/data_0: float[1, 3, 224, 224]gpu_0/softmax_1: float[1, 1000]wget https://github.com/onnx/models/raw/main/vision/classification/zfnet-512/model/zfnet512-12.onnx1bash run_tuning.sh --input_model=path/to/model \ # model path as *.onnx
2--config=zfnet512.yaml \
3--data_path=/path/to/imagenet \
4--label_path=/path/to/imagenet/label \
5--output_model=path/to/save