espressif / esp-dl

Espressif deep-learning library for AIoT applications
MIT License
516 stars 115 forks source link

Evaluator generate_quantized_model Failed (AIV-470) #80

Open notplus opened 2 years ago

notplus commented 2 years ago

Hi, 我在使用量化工具时,calib.generate_quantization_table(model_proto, test_images, pickle_file_path)可以正常使用,模型在esp32上也能正常推理,但使用Evaluator评估时eva.generate_quantized_model(model_proto, pickle_file_path)提示current model is not supported by esp-dl错误,模型使用了 Conv2D DepthwiseConv2D Pad Add2D Concat Transpose 算子,请问是 Evaluator 还未支持上述中的算子吗?

TiramisuJ commented 2 years ago

Hi,从你使用的算子来看,PAD操作暂时还未添加至Evaluator中, 我们会尽快更新Evaluator。

notplus commented 2 years ago

好的