尝试在张量流对象检测中导出推理时出现不完整的形状错误 api

Incomplete shape error when try to export inference in tensor flow object detection api

我用损失训练了自定义对象检测器 2.x ,当我尝试导出它时出现以下错误

我遇到了这个:

但我确定标签是相同的:我 运行 它多次

python3 export_inference_graph.py --input_type image_tensor       --pipeline_config_path training/inception_v2.config --trained_checkpoint_prefix training/model.ckpt-688 --output_directory trained-inference-graphs/output_inference_graph_v1

我遇到错误:

114 次操作由于形状不完整而没有失败统计数据。 解析输入... 形状不完整。

完整报告请查看:https://pastebin.com/mGSBDgJC

编辑:模型正在使用 eval 进行检测 python3 eval.py --logtostderr --pipeline_config_path=/home/ic/Documents/objectExtraction/workspace/training_demo/training/inception_v2.config --checkpoint_dir=/home/ic/Documents/objectExtraction/workspace/training_demo/training --eval_dir=/home/ic/Documents/objectExtraction/workspace/training_demo/eval

发生这种情况是因为您没有使用参数 input_shape 说明输入分辨率是多少。它只是意味着它无法计算一个操作需要多少次触发器,因为它不知道输入分辨率是多少。您仍然可以毫无问题地使用导出的图进行推理。