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
- NLP
- 대학원
- 전처리
- 자연어처리
- 인공지능
- Classification Task
- naver movie review
- 석사
- 수기
- 품사태깅
- Word2Vec
- pytorch
- CUDA
- sentiment analysis
- 우울증
- word embedding
Archives
- Today
- Total
슬기로운 연구생활
OSError: [E050] Can't find model 'de_core_news_sm'... only on debug mode 본문
슬기로운 에러 생활
OSError: [E050] Can't find model 'de_core_news_sm'... only on debug mode
vhrehfdl 2021. 11. 17. 15:50* 에러 원인
spacy.load("de_core_news_sm")을 사용하려 했는데 위치를 찾지 못하겠다는 에러가 발생했다.
spacy는 항상 사용할때마다 뭔 에러가 나는 것 같다.
* 에러 해결
de_core_new_sm을 import해서 해결
import en_core_web_sm, de_core_news_sm
spacy_de = de_core_news_sm.load()
spacy_en = en_core_web_sm.load()
'슬기로운 에러 생활' 카테고리의 다른 글
WARNING: apt does not have a stable CLI interface. Use with caution in scripts (0) | 2022.01.06 |
---|---|
nohup.out에 출력결과 즉시 nohup에 찍고 싶을 때 (0) | 2021.11.19 |
git fatal out of memory malloc failed (0) | 2021.09.13 |
couldn't communicate with the NVIDIA Driver (0) | 2021.09.13 |
Missing key(s) in state_dict: "embeddings.position_ids". (0) | 2021.09.09 |
Comments