Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 알고리즘
- 프롬프트
- prompt engineering
- 머신러닝
- Deeplearning
- transformer
- BFS
- deque
- dl
- 일기
- Python
- rnn
- Django
- attention
- Programmers
- Linear Regression
- GPT
- LLM
- 파이썬
- Linear Model
- 부스트캠프
- 코테
- 기계학습
- 코딩테스트
- gradient descent
- 프로그래머스
- ChatGPT
- machinelearning
- LeetCode
- NLP
Archives
- Today
- Total
크크루쿠쿠
[pandas] Error tokenizing data. C error 본문
Error tokenizing data. C error: Expected 11 fields in line 783401, saw 16 라는 error가
pandas.read_csv 도중 일어났다.
해결 방법은
pd.read_csv(path,error_bad_lines=False)
이렇게 error_bad_lines 를 False로 바꿔주면된다.
돌리는 도중
Skipping line 2002736: expected 11 fields, saw 16\n'
이런식으로 나오는 것을 보아 뭔가 csv 형식에 맞지 않는 line은 스킵해주는 parameter인것 같다.
'StackOverflow' 카테고리의 다른 글
Vscode 에서 파일 삭제,입력 최대한 지양하자 (0) | 2022.01.12 |
---|---|
pytorch Dataset 에서 AttributeError: (0) | 2022.01.11 |
Pytorch: IndexError: index out of range in self (0) | 2021.12.22 |
ImportError: IProgress not found. (0) | 2021.11.21 |
Kernel died (code: 1) in VSCode (0) | 2021.11.10 |
Comments