Loading The Spacy German Language Model Into A Jupyter Notebook May 24, 2024 Post a Comment This is the cell in notebook: #%% !python -m spacy download de_core_news_sm spacy_en = spacy.load('en_core_web_sm') spacy_de = spacy.load('de_core_news_sm') I get this error: OSSolution 1: Once you execute !python -m spacy download de_core_news_sm spacy_de = spacy.load('de_core_news_sm') spacy_en = spacy.load('en_core_web_sm') CopySimply restart your runtime . From Runtime > Restart runtime .And run importspacynlp= spacy.load('de_core_news_sm') CopyWorks for me .Hope it was helpful Share Post a Comment for "Loading The Spacy German Language Model Into A Jupyter Notebook"
Post a Comment for "Loading The Spacy German Language Model Into A Jupyter Notebook"