Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added gliner-spacy to universe #13417

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 29 additions & 0 deletions website/meta/universe.json
Original file line number Diff line number Diff line change
Expand Up @@ -4517,7 +4517,36 @@
"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",
"from gliner_spacy.pipeline import GlinerSpacy",
"",
"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": ["gliner", "spacy", "nlp", "ner"]
}

],

"categories": [
Expand Down