【BUG】 Could not find an implementation for ConvInteger(10) node with name ‘Conv_0_quant‘

前沿

我在onnx动态量化后出现了“Could not find an implementation for ConvInteger(10) node with name 'Conv_0_quant'“错误

解决:

更改为QUint8格式就可以了,weight_type=QuantType.QUInt8

quantized_model = quantize_dynamic(input_path, output_path, weight_type=QuantType.QUInt8)

题外话:

虽然动态量化可以了,但是速度反而变慢了

你可能感兴趣的:(BUG,bug)