우노
[DL] import tflite_runtime.interpreter as tflite 호출 에러 본문
에러 결과
[import tflite_runtime.interpreter as tflite] 을 사용해 tflite 모델을 로드할 경우,
import tflite_runtime.interpreter as tflite model = tflite.Interpreter( "./model.tflite", experimental_delegates=[tflite.load_delegate('libedgetpu.so.1')])
아래와 같은 에러가 발생하는 경우가 있습니다.
ImportError: generic_type: type "InterpreterWrapper" is already registered!
에러 원인
- “import tensorflow as tf” 와 “import tflite_runtime.interpreter as tflite” 가
- 모두 Import 되어있을 경우 발생합니다.
해결 방법
아래 코드와 같이 tflite 모델을 불러옵니다.
import tensorflow as tf interpreter = tf.lite.Interpreter(model_path="./model.tflite")
'AI > Deep Learning' 카테고리의 다른 글
[DL] GPU 메모리 사용량 지정 방법 (0) | 2022.06.07 |
---|---|
[DL] TFLite 양자화 적용 상태 확인 방법 (0) | 2022.06.06 |
[DL] HDF5 와 SavedModel 간 변환 (0) | 2022.04.10 |
[DL] BERT 모델을 사용한 IMDb 데이터 추론 (0) | 2022.03.24 |
[DL] LSTM 모델을 사용한 IMDb 데이터 추론 (0) | 2022.03.24 |
Comments