Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- processstart
- 사무자동화
- Text-to-Speech
- Google API
- google cloud
- pythonnet
- objectdetection
- pypdf2
- DeepLearning
- ironpython
- 파이썬 #업무자동화 #python
- pdf merge
- YOLOv5
- computervision
- pyautogui
- yolo
- Text To Speech
- 업무자동화
- 사무자동화 #Selenium
- YOLOv7
Archives
- Today
- Total
Doarchive
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x99 in position 7884: invalid start byte 해결 방법 본문
Computer Vision/Deep learning
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x99 in position 7884: invalid start byte 해결 방법
오순발닦개 2023. 3. 28. 10:27CSV 파일을 로드할때 이와 같은 에러가 뜨는 경우가 있다
아래와 같이 CSV를 로드하는 코드를
dataSet = open('IMDB Dataset.csv','r',encoding='utf-8')
csvreader = csv.reader(dataSet)
아래와 같이 바꿔준다
dataSet = open('IMDB Dataset.csv','r',encoding='cp949')
#한글이라면
dataSet = open('IMDB Dataset.csv','r',encoding='euc-kr')
728x90
'Computer Vision > Deep learning' 카테고리의 다른 글
YOLOv7 사용 방법 (0) | 2023.04.05 |
---|---|
YOLOv7 Error : subprocess.CalledProcessError: Command 'git tag' returned non-zero exit status 128. (0) | 2023.04.05 |
Keras Mnist dataset 을 로드 할 수 없을 때 (Mac) (0) | 2021.04.09 |
virtualenv 사용법 (0) | 2021.04.09 |
[Colab] 기본세팅 (1) | 2021.01.27 |