Skip to content

Commit

Permalink
added gliner-spacy to universe (#13417) [ci skip]
Browse files Browse the repository at this point in the history
Co-authored-by: Sofie Van Landeghem <[email protected]>
Co-authored-by: Ines Montani <[email protected]>
  • Loading branch information
3 people committed Sep 10, 2024
1 parent 1e0cc44 commit 1f94cec
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions website/meta/universe.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down

0 comments on commit 1f94cec

Please sign in to comment.