Skip to content

Commit

Permalink
fix spacy pipeline model name
Browse files Browse the repository at this point in the history
  • Loading branch information
AnasAito authored Nov 2, 2021
1 parent 53b1d5b commit e4c6540
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ It is easy to get started with **SkillNer** and take advantage of its features.
pip install skillNer
```

2. Next, run the following command to install ``spacy en_core_web_sm ``
2. Next, run the following command to install ``spacy en_core_web_lg ``
which is one of the main plugins of SkillNer. Thanks its modular nature, you can
customize SkillNer behavior just by adjusting | plugin | unplugin modules. Don't worry about these details, we will discuss them in details in the an **upcomming Tutorial section**.

Expand Down Expand Up @@ -70,7 +70,7 @@ from skillNer.general_params import SKILL_DB
from skillNer.skill_extractor_class import SkillExtractor

# init params of skill extractor
nlp = spacy.load("en_core_web_sm")
nlp = spacy.load("en_core_web_lg")
# init skill extractor
skill_extractor = SkillExtractor(nlp, SKILL_DB, PhraseMatcher)

Expand Down

0 comments on commit e4c6540

Please sign in to comment.