mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
added bagpipes-spacy to universe (#13425) [ci skip]
Co-authored-by: Ines Montani <ines@ines.io>
This commit is contained in:
parent
081e4e385d
commit
89c1774d43
|
@ -5361,6 +5361,49 @@
|
||||||
"normalizer",
|
"normalizer",
|
||||||
"french"
|
"french"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "bagpipes-spacy",
|
||||||
|
"title": "Bagpipes spaCy",
|
||||||
|
"slogan": "A bag of custom spaCy pipes for various NLP tasks.",
|
||||||
|
"description": "Bagpipes spaCy is a versatile collection of custom spaCy pipeline components enhancing text processing capabilities. It includes functionalities such as phrase extraction, text normalization, triple detection, entity and sentence clustering, token clustering, and keyword extraction. These components augment NLP tasks with advanced processing and analysis features, offering a comprehensive toolkit for natural language data handling.",
|
||||||
|
"github": "wjbmattingly/bagpipes-spacy",
|
||||||
|
"pip": "bagpipes-spacy",
|
||||||
|
"code_example": [
|
||||||
|
"import spacy",
|
||||||
|
"from bagpipes_spacy import PhrasesExtractor",
|
||||||
|
"nlp = spacy.load(\"en_core_web_md\")",
|
||||||
|
"nlp.add_pipe(\"phrases_extractor\")",
|
||||||
|
"text = 'Seconds later, he had climbed out onto a rather fine antique rug, brushing ash from the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand.'",
|
||||||
|
"doc = nlp(text)",
|
||||||
|
"print('Prepositional Phrases')",
|
||||||
|
"print(doc._.prep_phrases)",
|
||||||
|
"print('Noun Phrases')",
|
||||||
|
"print(doc._.noun_phrases)",
|
||||||
|
"print('Verb Phrases')",
|
||||||
|
"print(doc._.verb_phrases)",
|
||||||
|
"print('Adj Phrases')",
|
||||||
|
"print(doc._.adj_phrases)"
|
||||||
|
],
|
||||||
|
"code_language": "python",
|
||||||
|
"url": "https://github.com/wjbmattingly/bagpipes-spacy",
|
||||||
|
"thumb": "https://github.com/wjbmattingly/bagpipes-spacy/raw/main/images/bagpipes-spacy-icon.png?raw=true",
|
||||||
|
"image": "https://github.com/wjbmattingly/bagpipes-spacy/raw/main/images/bagpipes-spacy-logo.png?raw=true",
|
||||||
|
"author": "W.J.B. Mattingly",
|
||||||
|
"author_links": {
|
||||||
|
"twitter": "wjb_mattingly",
|
||||||
|
"github": "wjbmattingly",
|
||||||
|
"website": "https://www.wjbmattingly.com"
|
||||||
|
},
|
||||||
|
"category": [
|
||||||
|
"pipeline"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"spacy",
|
||||||
|
"text processing",
|
||||||
|
"NLP",
|
||||||
|
"custom components"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
|
|
Loading…
Reference in New Issue
Block a user