[solved] AttributeError: module 'tensorflow._api.v2.lite' has no attribute 'interpreter'
코드
import tensorflow as tf
interpreter = tf.lite.interpreter("model.tflite")
interpreter.allocate_tensors()
오류 메세지
AttributeError Traceback (most recent call last) <ipython-input-3-66e8971eb13c> in <module>() 1 import tensorflow as tf 2 interpreter = tf.lite.interpreter("model.tflite") 3 interpreter.allocate_tensors() AttributeError: module 'tensorflow._api.v2.lite' has no attribute 'interpreter' |
+) attribute 확인하는 방법
'lite' in dir(tf) #True
'interpreter' in dir(tf.lite) #False
결론
interpreter 맨 앞에 소문자 아니고 대문자로 Interpreter 였음 아악
Class라서 대문자였던 것이다... 아...
'🔨삽질' 카테고리의 다른 글
안드로이드 스튜디오 assets 폴더 추가하는 방법 (0) | 2020.07.08 |
---|---|
[solved] 작업관리자에서 크롬 옆에 있는 숫자는 뭘까? (0) | 2020.06.09 |
[solved] SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape (0) | 2020.06.08 |
[solved] 깃허브에 잔디가 안 심어진다! (0) | 2020.05.31 |
[solved] build.gradle (Module: app) 이 없다! (0) | 2020.05.30 |
댓글
이 글 공유하기
다른 글
-
안드로이드 스튜디오 assets 폴더 추가하는 방법
안드로이드 스튜디오 assets 폴더 추가하는 방법
2020.07.08 -
[solved] 작업관리자에서 크롬 옆에 있는 숫자는 뭘까?
[solved] 작업관리자에서 크롬 옆에 있는 숫자는 뭘까?
2020.06.09 -
[solved] SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
[solved] SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
2020.06.08 -
[solved] 깃허브에 잔디가 안 심어진다!
[solved] 깃허브에 잔디가 안 심어진다!
2020.05.31