Traceback (most recent call last): File "pose2.py", line 82, in <module> classifier_interpreter = tf.lite.Interpreter(model_path='pose_classifier.tflite') File "/home/zlhaha/miniconda3/envs/tflite/lib/python3.7/site-packages/tensorflow_core/lite/python/interpreter.py", line 206, in __init__ model_path)) ValueError: Didn't find op for builtin opcode 'FULLY_CONNECTED' version '9' Registration failed.
时间: 2024-04-25 10:26:06 浏览: 106
linux 下 pip3 报错“ File “/usr/bin/pip3”, line 9, in from pip import mainImportError: canno”处理
5星 · 资源好评率100%
这个错误提示显示,在使用 TensorFlow Lite 解释器加载模型时出现了问题。具体原因是模型中包含了一个不支持的操作 FULLY_CONNECTED,而且其版本是9,这个版本在当前 TensorFlow Lite 解释器中没有注册,所以无法被解释执行。解决这个问题的方法是更新 TensorFlow Lite 解释器或者重新生成模型,使其包含当前版本的 FULLY_CONNECTED 操作,或者使用已经支持 FULLY_CONNECTED 版本9的 TensorFlow Lite 解释器。
阅读全文