当前位置: 首页 > 工具软件 > Core Lite > 使用案例 >

AttributeError: module ‘tensorflow_core.contrib‘ has no attribute ‘lite‘

萧宁
2023-12-01

主要原因tensorflow不同版本支持程度不同导致的,我的tensorflow版本1.13.2,解决方案供参考:

直接去掉.contrib即可。

原调用代码:

converter = tf.contrib.lite.TFLiteConverter.from_frozen_graph(path_to_frozen_graphdef_pb, ["inputs"], ["predictions"])

修改后代码:

converter = tf.lite.TFLiteConverter.from_frozen_graph(path_to_frozen_graphdef_pb, ["inputs"], ["predictions"])

 类似资料:

相关阅读

相关文章

相关问答