mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 05:07:03 +03:00
Fix typo (#2579)
Update slogan, desc and code snippet to latest version
This commit is contained in:
parent
cd687091fb
commit
b1ec827ee0
|
@ -943,17 +943,19 @@
|
||||||
{
|
{
|
||||||
"id": "excelcy",
|
"id": "excelcy",
|
||||||
"title": "ExcelCy",
|
"title": "ExcelCy",
|
||||||
"slogan": "Excel Integration with SpaCy. Includes, Entity training, Entity matcher pipe.",
|
"slogan": "Excel Integration with spaCy. Training NER using XLSX from PDF, DOCX, PPT, PNG or JPG.",
|
||||||
"description": "ExcelCy is a SpaCy toolkit to help improve the data training experiences. It provides easy annotation using Excel file format. It has helper to pre-train entity annotation with phrase and regex matcher pipe.",
|
"description": "ExcelCy is a toolkit to integrate Excel to spaCy NLP training experiences. Training NER using XLSX from PDF, DOCX, PPT, PNG or JPG. ExcelCy has pipeline to match Entity with PhraseMatcher or Matcher in regular expression.",
|
||||||
"url": "https://github.com/kororo/excelcy",
|
"url": "https://github.com/kororo/excelcy",
|
||||||
"github": "kororo/excelcy",
|
"github": "kororo/excelcy",
|
||||||
"pip": "excelcy",
|
"pip": "excelcy",
|
||||||
"code_example": [
|
"code_example": [
|
||||||
"from excelcy import ExcelCy",
|
"from excelcy import ExcelCy",
|
||||||
"",
|
"# collect sentences, annotate Entities and train NER using spaCy",
|
||||||
"excelcy = ExcelCy()",
|
"excelcy = ExcelCy.execute(file_path='https://github.com/kororo/excelcy/raw/master/tests/data/test_data_01.xlsx')",
|
||||||
"# download data from here, https://github.com/kororo/excelcy/tree/master/excelcy/tests/data/test_data_28.xlsx",
|
"# use the nlp object as per spaCy API",
|
||||||
"excelcy.train(data_path='test_data_28.xlsx')"
|
"doc = excelcy.nlp('Google rebrands its business apps')",
|
||||||
|
"# or save it for faster bootstrap for application",
|
||||||
|
"excelcy.nlp.to_disk('/model')"
|
||||||
],
|
],
|
||||||
"author": "Robertus Johansyah",
|
"author": "Robertus Johansyah",
|
||||||
"author_links": {
|
"author_links": {
|
||||||
|
@ -970,7 +972,7 @@
|
||||||
},
|
},
|
||||||
"training": {
|
"training": {
|
||||||
"title": "Training",
|
"title": "Training",
|
||||||
"description": "Helpers and toolkits for trainig spaCy models"
|
"description": "Helpers and toolkits for training spaCy models"
|
||||||
},
|
},
|
||||||
"conversational": {
|
"conversational": {
|
||||||
"title": "Conversational",
|
"title": "Conversational",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user