336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 6987: illegal multibyte sequence
Python에서 파일을 열 경우 위와 같은 에러를 볼 경우가 있다.
이럴 경우
with open(file, 'rt', encoding='UTF8')
위와 같이 파일을 열면 해결이 된다.
참고 하세요.
'나의 플랫폼 > TensorFlow' 카테고리의 다른 글
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2 (0) | 2017.12.27 |
---|---|
Could not find 'cudart64_80.dll' (0) | 2017.12.27 |
[Machine Learning] Gradient Descent 공식 미분 (1) | 2017.11.21 |
[TensorFlow] TensorFlow를 윈도우에 설치하기 (39) | 2016.12.23 |
[TensorFlow] TensorFlow 참고 사이트 (0) | 2016.12.23 |