Skip to content

Latest commit

 

History

History
 
 

Evaluate performance of ONNX Runtime(ResNet101-DUC)

ONNX runtime quantization is under active development. please use 1.6.0+ to get more quantization support.

This example load an object detection model converted from ONNX Model Zoo and confirm its accuracy and speed based on cityscapes dataset. You need to download this dataset yourself.

Environment

onnx: 1.9.0 onnxruntime: 1.10.0

Prepare model

Download model from ONNX Model Zoo

wget https://github.com/onnx/models/raw/main/vision/object_detection_segmentation/duc/model/ResNet101-DUC-12.onnx

Quantization

bash run_tuning.sh --input_model=path/to/model  \ # model path as *.onnx
                   --config=DUC.yaml \ 
                   --data_path=/path/to/leftImg8bit/val \
                   --label_path=/path/to/gtFine/val \
                   --output_model=path/to/save

Performance

bash run_benchmark.sh --input_model=path/to/model \  # model path as *.onnx
                      --config=DUC.yaml \
                      --data_path=/path/to/leftImg8bit/val \
                      --label_path=/path/to/gtFine/val \
                      --mode=performance