【发布时间】:2020-04-16 19:37:31
【问题描述】:
tflite_model = converter.convert()
tflite_model_file = 'converted_model.tflite'
with open(tflite_model_file, "wb") as f:
f.write(tflite_model)
当我最终在点转换方法中转换模型时, 我遇到了一些错误。
错误信息:
ValueError: Failed to parse the model: /tensorflow-2.1.0/python3.6/tensorflow_core/lite/python/optimize/_tensorflow_lite_wrap_calibration_wrapper.so: undefined symbol: _ZTIN10tensorflow6DeviceE.
源代码:
即使我没有找到是什么
_ZTIN10tensorflow6DeviceE
如何转换迁移学习模型?
【问题讨论】:
标签: tensorflow tensorflow-lite transfer-learning