我正在尝试构建一个TFLite模型,它由用于检测的efficientdet和用于识别的keras-ocr (只是识别器模型)组成,我需要它在移动设备上运行得更快。我想要完全量化模型,但在Netron中检查模型时发现模型有一些子图,而TFLite不支持带子图的模型的量化。 List of subgraphs in model 这是我正在使用的功能模型定义,以及我认为生成子图的层。 MAX_DETECTIONS = 10
boxes, scores, class
我对Tensorflow训练后量化过程感到困惑。官方网站提到了Tensorflow Lite量化。TFLiteConverter为我的Mask RCNN模型返回错误:
Some of the operators in the model are not supported by the standard TensorFlowLite runtime and are not recognized by TensorFlow.我对这些错误并不感到惊讶,因为不支持手机的decodejpeg可能是有意义的,然而,我希望我的模型由<