Tensorflow:如何了解tflite模型中的锚点?

时间:2020-10-27 00:34:13

标签: tensorflow anchor object-detection tf-lite

我用mobilenet_v2_ssd训练了目标检测模型,使用tflite_convert将其转换为float tflite和unit8 tfilte,并使用Netron工具将模型可视化。

我发现最终的“ TFLite_Detection_PostProcess”可以提取输入参数锚点。

它的格式是 [ [ 4, 4, 15 15 ], [ 4, 4, 22 44 ], ...]

您如何理解锚点?

谢谢!

1 个答案:

答案 0 :(得分:0)

code中检查出来的是ymin, xmin, ymax, xmax

您可能还会发现this thread有用。