【发布时间】:2020-01-23 20:24:52
【问题描述】:
我最近使用 Tensorflow 1.15 训练了一个对象检测模型,使用 Python 的测试结果很好。然而,在将其转换为 .tflite 格式后,在 Android 上运行该模型,其性能出现了急剧下降。
在模型转换为 tf-lite 期间是否会发生性能损失? 有没有办法避免在转换过程中出现这种性能损失?
参考:
培训来源:https://github.com/tensorflow/models/tree/master/research/object_detection
迁移学习的基础模型:ssd_mobilenet_v1
Python 测试脚本:https://github.com/tensorflow/models/blob/master/research/object_detection/object_detection_tutorial.ipynb
Android 演示应用:https://github.com/tensorflow/examples/tree/master/lite/examples/object_detection
【问题讨论】:
标签: android tensorflow object-detection tensorflow-lite