mirror of
https://github.com/explosion/spaCy.git
synced 2025-04-27 20:33:42 +03:00
Update universe.json [ci skip]
This commit is contained in:
parent
0c396aeed4
commit
4b95587ad4
|
@ -1869,14 +1869,15 @@
|
||||||
"github": "yash1994/dframcy",
|
"github": "yash1994/dframcy",
|
||||||
"description": "DframCy is a light-weight utility module to integrate Pandas Dataframe to spaCy's linguistic annotation and training tasks.",
|
"description": "DframCy is a light-weight utility module to integrate Pandas Dataframe to spaCy's linguistic annotation and training tasks.",
|
||||||
"pip": "dframcy",
|
"pip": "dframcy",
|
||||||
"category": ["pipeline"],
|
"category": ["pipeline", "training"],
|
||||||
"tags": ["spacy-extension", "pandas-dataframe"],
|
"tags": ["pandas"],
|
||||||
"code_example": [
|
"code_example": [
|
||||||
"import spacy"
|
"import spacy",
|
||||||
"from dframcy import DframCy"
|
"from dframcy import DframCy",
|
||||||
"nlp = spacy.load('en_core_web_sm')"
|
"",
|
||||||
"dframcy = DframCy(nlp)"
|
"nlp = spacy.load('en_core_web_sm')",
|
||||||
"doc = dframcy.nlp(u'Apple is looking at buying U.K. startup for $1 billion')"
|
"dframcy = DframCy(nlp)",
|
||||||
|
"doc = dframcy.nlp(u'Apple is looking at buying U.K. startup for $1 billion')",
|
||||||
"annotation_dataframe = dframcy.to_dataframe(doc)"
|
"annotation_dataframe = dframcy.to_dataframe(doc)"
|
||||||
],
|
],
|
||||||
"author": "Yash Patadia",
|
"author": "Yash Patadia",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user