mirror of
https://github.com/explosion/spaCy.git
synced 2025-04-21 09:31:59 +03:00
Update universe.json
This commit is contained in:
parent
51fb6e6a3e
commit
0a6357b0f4
|
@ -4176,17 +4176,25 @@
|
|||
"tags": ["pipeline", "nlp", "sentiment"]
|
||||
},
|
||||
{
|
||||
"id": "spacyspellcheck",
|
||||
"title": "spacyspellcheck",
|
||||
"slogan": "Simple spell check with spacy",
|
||||
"description": "Simple spell check using spacy and in build Levenshtein distance",
|
||||
"github": "vishnunkumar/spacyspellcheck",
|
||||
"id": "nligraphspacy",
|
||||
"title": "nligraphspacy",
|
||||
"slogan": "Knowledge graph using NLP Spacy",
|
||||
"description": "Knowledge graph using NLP Spacy",
|
||||
"github": "vishnunkumar/nligraphspacy",
|
||||
"pip": "spacyspellcheck",
|
||||
"code_example": [
|
||||
"from spacyspellcheck.spellcheck import SpellCorrector",
|
||||
"spacyspell = SpellCorrector('we cannt move forwad with that approach')",
|
||||
"spacyspell.get_possible_misspelt()",
|
||||
"# results: ['cannot', 'forward']"
|
||||
"code_example": [,
|
||||
"from nligraphspacy import NLIGRAPH",
|
||||
"nligraph = NLIGRAPH.RelationEntityExtract('She worked in the city of London')",
|
||||
"nligraph.process_text()",
|
||||
"# ('She', 'worked', 'London')",
|
||||
"nligraph.get_seperate_entities()",
|
||||
"# [{'text': 'A', 'label': ''}",
|
||||
"# {'text': 'DAG', 'label': 'SOURCE-NODE'}",
|
||||
"# {'text': 'is', 'label': ''}",
|
||||
"# {'text': 'used', 'label': 'EDGE'}",
|
||||
"# {'text': 'for', 'label': ''}",
|
||||
"# {'text': 'organizing', 'label': ''}",
|
||||
"# {'text': 'tasks', 'label': 'TARGET-NODE'}]"
|
||||
],
|
||||
"thumb": "",
|
||||
"image": "",
|
||||
|
|
Loading…
Reference in New Issue
Block a user