mirror of
https://github.com/explosion/spaCy.git
synced 2025-07-10 00:02:19 +03:00
Update universe.json
This commit is contained in:
parent
3eae52132e
commit
d7d3cba525
|
@ -4176,20 +4176,17 @@
|
||||||
"tags": ["pipeline", "nlp", "sentiment"]
|
"tags": ["pipeline", "nlp", "sentiment"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "nligraphspacy",
|
"id": "spacyspellcheck",
|
||||||
"title": "nligraphspacy",
|
"title": "spacyspellcheck",
|
||||||
"slogan": "Knowledge graph using NLP Spacy",
|
"slogan": "Simple spell check with spacy",
|
||||||
"description": "Knowledge graph pipeline for simple english sentences using pre-trained spaCy models",
|
"description": "Simple spell check using spacy and in build Levenshtein distance",
|
||||||
"github": "vishnunkumar/nligraphspacy",
|
"github": "vishnunkumar/spacyspellcheck",
|
||||||
"pip": "nligraphspacy",
|
"pip": "spacyspellcheck",
|
||||||
"code_example": [
|
"code_example": [
|
||||||
"# Please download the model from the repository and replace the directory with your own i.e where you have kept the model",
|
"from spacyspellcheck.spellcheck import SpellCorrector",
|
||||||
"import spacy",
|
"spacyspell = SpellCorrector('we cannt move forwad with that approach')",
|
||||||
"kgmodel = spacy.load('nligraphspacy')",
|
"spacyspell.get_possible_misspelt()",
|
||||||
"text = She did well in her exams",
|
"# results: ['cannot', 'forward']"
|
||||||
"doc = nlp(text)",
|
|
||||||
"for tok in doc: print(tok, tok.ent_type_)",
|
|
||||||
"# She SOURCE-NODE did EDGE well TARGET-NODE in her exams TARGET-NODE"
|
|
||||||
],
|
],
|
||||||
"thumb": "",
|
"thumb": "",
|
||||||
"image": "",
|
"image": "",
|
||||||
|
@ -4199,8 +4196,8 @@
|
||||||
"github": "Vishnunkumar",
|
"github": "Vishnunkumar",
|
||||||
"twitter": "vishnunkumar_"
|
"twitter": "vishnunkumar_"
|
||||||
},
|
},
|
||||||
"category": ["pipeline"],
|
"category": ["pipelin"],
|
||||||
"tags": ["pipeline", "nlp", "ner", "knowlegde graph"]
|
"tags": ["pipeline", "spellcheck"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "textnets",
|
"id": "textnets",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user