File size: 965 Bytes
a725ece |
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 40 41 42 43 |
{
"model_type": "ONNX",
"npu_mode": "NPU1",
"quant": {
"input_configs": [
{
"tensor_name": "images",
"calibration_dataset": "./dataset/coco_1000.tar",
"calibration_size": 4,
"calibration_mean": [0, 0, 0],
"calibration_std": [255.0, 255.0, 255.0]
}
],
"calibration_method": "MinMax",
"precision_analysis": true,
"precision_analysis_method":"EndToEnd"
},
"input_processors": [
{
"tensor_name": "images",
"tensor_format": "BGR",
"src_format": "BGR",
"src_dtype": "U8",
"src_layout": "NHWC"
}
],
"output_processors": [
{
"tensor_name": "/model.22/Concat_output_0",
"dst_perm": [0, 2, 3, 1]
}, {
"tensor_name": "/model.22/Concat_1_output_0",
"dst_perm": [0, 2, 3, 1]
}, {
"tensor_name": "/model.22/Concat_2_output_0",
"dst_perm": [0, 2, 3, 1]
},
],
"compiler": {
"check": 0
}
}
|