mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
added gliner-spacy to universe (#13417) [ci skip]
Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com> Co-authored-by: Ines Montani <ines@ines.io>
This commit is contained in:
parent
b18cc94451
commit
5a7ad5572c
|
@ -4517,7 +4517,35 @@
|
||||||
"website": "https://redfield.ai"
|
"website": "https://redfield.ai"
|
||||||
},
|
},
|
||||||
"category": ["standalone"]
|
"category": ["standalone"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "gliner-spacy",
|
||||||
|
"title": "GLiNER spaCy Wrapper",
|
||||||
|
"slogan": "Integrating GLiNER's Advanced NER with spaCy",
|
||||||
|
"description": "GLiNER SpaCy Wrapper is a project that brings together GLiNER, a zero-shot Named Entity Recognition (NER) model, with spaCy's NLP capabilities. It provides an easy way to integrate GLiNER within the spaCy environment, thus enhancing NER tasks with GLiNER's features.",
|
||||||
|
"github": "theirstory/gliner-spacy",
|
||||||
|
"pip": "gliner-spacy",
|
||||||
|
"code_example": [
|
||||||
|
"import spacy",
|
||||||
|
"",
|
||||||
|
"nlp = spacy.blank('en')",
|
||||||
|
"nlp.add_pipe('gliner_spacy')",
|
||||||
|
"text = 'This is a text about Bill Gates and Microsoft.'",
|
||||||
|
"doc = nlp(text)",
|
||||||
|
"",
|
||||||
|
"for ent in doc.ents:",
|
||||||
|
" print(ent.text, ent.label_)"
|
||||||
|
],
|
||||||
|
"code_language": "python",
|
||||||
|
"url": "https://github.com/theirstory/gliner-spacy",
|
||||||
|
"author": "TheirStory",
|
||||||
|
"author_links": {
|
||||||
|
"website": "https://theirstory.io"
|
||||||
|
},
|
||||||
|
"category": ["pipeline"],
|
||||||
|
"tags": ["NER"]
|
||||||
}
|
}
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
"categories": [
|
"categories": [
|
||||||
|
|
Loading…
Reference in New Issue
Block a user