指定的输出数组“ TFlite_Detection_PostProcess”不是由该图中的任何操作生成的,即使它存在于图中

时间:2019-04-27 10:48:12

标签: tensorflow tensorflow-lite

我正在遵循this中的说明,将我的ssd_mobilenet_v2_coco模型转换为tflite。我已经将模型导出到生成tflite_graph.pb的tflite,然后在使用命令行将Iconicon转换为.tflite文件时

tflite_convert --graph_def_file=tflite_graph.pb \
                --output_file=detect1.tflite \
                --input_shapes=1,300,300,3 \
                --input_arrays=normalized_input_image_tensor \
                --output_arrays=TFlite_Detection_PostProcess \
                --change_concat_input_ranges=false \
                --allow_custom_ops

  

检查失败:GetOpWithOutput(model,output_array)指定的输出   数组“ TFlite_Detection_PostProcess”不是由任何操作生成的   图形。是错字吗?要使此消息静音,请传递以下标志:   allow_nonexistent_arrays。

TFLite_Detection_PostProcess确实存在于我的图表中。这是证明它的图像

enter image description here

0 个答案:

没有答案