Merge branch 'master' into add-wasm-universe

This commit is contained in:
Victoria 2023-04-26 11:04:56 +02:00 committed by GitHub
commit 35fcf2b82c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,33 @@
"category": ["visualizers"],
"tags": ["visualization", "deployment"]
},
{
"id": "spacysee",
"title": "spaCysee",
"slogan": "Visualize spaCy's Dependency Parsing, POS tagging, and morphological analysis",
"description": "A project that helps you visualize your spaCy docs in Jupyter notebooks. Each of the dependency tags, POS tags and morphological features are clickable. Clicking on a tag will bring up the relevant documentation for that tag.",
"github": "moxley01/spacysee",
"pip": "spacysee",
"code_example": [
"import spacy",
"from spacysee import render",
"",
"nlp = spacy.load('en_core_web_sm')",
"doc = nlp('This is a neat way to visualize your spaCy docs')",
"render(doc, width='500', height='500')"
],
"code_language": "python",
"thumb": "https://www.mattoxley.com/static/images/spacysee_logo.svg",
"image": "https://www.mattoxley.com/static/images/spacysee_logo.svg",
"author": "Matt Oxley",
"author_links": {
"twitter": "matt0xley",
"github": "moxley01",
"website": "https://mattoxley.com"
},
"category": ["visualizers"],
"tags": ["visualization"]
},
{
"id": "grecy",
"title": "greCy",