[solved] SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
코드
import tensorflow as tf
tf.__version__
interpreter = tf.lite.interpreter("C:/Users/user/model.tflite")
interpreter.allocate_tensors()
오류 메세지
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape |
해결 방법
"C:\Users\user\model.tflite"
를
"C:/Users/user/model.tflite"
로 바꿔주면 된다.
\ 대신 /를 사용하면 해결된다.
'🔨삽질' 카테고리의 다른 글
[solved] 작업관리자에서 크롬 옆에 있는 숫자는 뭘까? (0) | 2020.06.09 |
---|---|
[solved] AttributeError: module 'tensorflow._api.v2.lite' has no attribute 'interpreter' (0) | 2020.06.08 |
[solved] 깃허브에 잔디가 안 심어진다! (0) | 2020.05.31 |
[solved] build.gradle (Module: app) 이 없다! (0) | 2020.05.30 |
AttributeError: module 'tensorflow' has no attribute 'placeholder' (0) | 2020.05.22 |
댓글
이 글 공유하기
다른 글
-
[solved] 작업관리자에서 크롬 옆에 있는 숫자는 뭘까?
[solved] 작업관리자에서 크롬 옆에 있는 숫자는 뭘까?
2020.06.09 -
[solved] AttributeError: module 'tensorflow._api.v2.lite' has no attribute 'interpreter'
[solved] AttributeError: module 'tensorflow._api.v2.lite' has no attribute 'interpreter'
2020.06.08 -
[solved] 깃허브에 잔디가 안 심어진다!
[solved] 깃허브에 잔디가 안 심어진다!
2020.05.31 -
[solved] build.gradle (Module: app) 이 없다!
[solved] build.gradle (Module: app) 이 없다!
2020.05.30