Update universe.json

This commit is contained in:
Vishnu Nandakumar 2023-06-26 20:11:16 +05:30 committed by GitHub
parent 51fb6e6a3e
commit 0a6357b0f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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": "",