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:
William Mattingly 2024-09-10 08:12:52 -04:00 committed by GitHub
parent b18cc94451
commit 5a7ad5572c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4517,7 +4517,35 @@
"website": "https://redfield.ai"
},
"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": [