Instructions to use amjad-awad/skill-extractor with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- spaCy
How to use amjad-awad/skill-extractor with spaCy:
!pip install https://huggingface.co/amjad-awad/skill-extractor/resolve/main/skill-extractor-any-py3-none-any.whl # Using spacy.load(). import spacy nlp = spacy.load("skill-extractor") # Importing as module. import skill-extractor nlp = skill-extractor.load() - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -48,5 +48,6 @@ doc = nlp(text)
|
|
| 48 |
skills = [ent.text for ent in doc.ents if "SKILLS" in ent.label_]
|
| 49 |
print(skills)
|
| 50 |
```
|
|
|
|
| 51 |
['Python', 'JavaScript', 'cloud', 'AWS', 'Azure']
|
| 52 |
```
|
|
|
|
| 48 |
skills = [ent.text for ent in doc.ents if "SKILLS" in ent.label_]
|
| 49 |
print(skills)
|
| 50 |
```
|
| 51 |
+
```output
|
| 52 |
['Python', 'JavaScript', 'cloud', 'AWS', 'Azure']
|
| 53 |
```
|