[에러 전문]
OSError: [E941] Can't find model 'en'. It looks like you're trying to load a model from a shortcut, which is obsolete as of spaCy v3.0. To load the model, use its full name instead: nlp = spacy.load("en_core_web_sm")
[해결 방법]
spacy_en = spacy.load('en') 대신에 spacy_en = spacy.load('en_core_web_sm') 사용하기
아마 버전이 업그레이드 되면서 이런 오류가 뜬 것 같다.
'DeepLearning' 카테고리의 다른 글
토스의 AI 그래픽 생성기, 토스트 (0) | 2024.01.03 |
---|---|
MetNet-3: A state-of-the-art neural weather model available in Google products (0) | 2024.01.03 |