mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
49cee4af92
* Integrate Python kernel via Binder * Add live model test for languages with examples * Update docs and code examples * Adjust margin (if not bootstrapped) * Add binder version to global config * Update terminal and executable code mixins * Pass attributes through infobox and section * Hide v-cloak * Fix example * Take out model comparison for now * Add meta text for compat * Remove chart.js dependency * Tidy up and simplify JS and port big components over to Vue * Remove chartjs example * Add Twitter icon * Add purple stylesheet option * Add utility for hand cursor (special cases only) * Add transition classes * Add small option for section * Add thumb object for small round thumbnail images * Allow unset code block language via "none" value (workaround to still allow unset language to default to DEFAULT_SYNTAX) * Pass through attributes * Add syntax highlighting definitions for Julia, R and Docker * Add website icon * Remove user survey from navigation * Don't hide GitHub icon on small screens * Make top navigation scrollable on small screens * Remove old resources page and references to it * Add Universe * Add helper functions for better page URL and title * Update site description * Increment versions * Update preview images * Update mentions of resources * Fix image * Fix social images * Fix problem with cover sizing and floats * Add divider and move badges into heading * Add docstrings * Reference converting section * Add section on converting word vectors * Move converting section to custom section and fix formatting * Remove old fastText example * Move extensions content to own section Keep weird ID to not break permalinks for now (we don't want to rewrite URLs if not absolutely necessary) * Use better component example and add factories section * Add note on larger model * Use better example for non-vector * Remove similarity in context section Only works via small models with tensors so has always been kind of confusing * Add note on init-model command * Fix lightning tour examples and make excutable if possible * Add spacy train CLI section to train * Fix formatting and add video * Fix formatting * Fix textcat example description (resolves #2246) * Add dummy file to try resolve conflict * Delete dummy file * Tidy up [ci skip] * Ensure sufficient height of loading container * Add loading animation to universe * Update Thebelab build and use better startup message * Fix asset versioning * Fix typo [ci skip] * Add note on project idea label
168 lines
5.3 KiB
JSON
168 lines
5.3 KiB
JSON
{
|
|
"sidebar": {
|
|
"Get started": {
|
|
"Installation": "./",
|
|
"Models & Languages": "models",
|
|
"Facts & Figures": "facts-figures",
|
|
"spaCy 101": "spacy-101",
|
|
"New in v2.0": "v2"
|
|
},
|
|
"Guides": {
|
|
"Linguistic Features": "linguistic-features",
|
|
"Processing Pipelines": "processing-pipelines",
|
|
"Vectors & Similarity": "vectors-similarity",
|
|
"Training Models": "training",
|
|
"Adding Languages": "adding-languages",
|
|
"Visualizers": "visualizers"
|
|
},
|
|
"In-depth": {
|
|
"Code Examples": "examples"
|
|
}
|
|
},
|
|
|
|
"index": {
|
|
"title": "Install spaCy",
|
|
"next": "models",
|
|
"quickstart": true,
|
|
"menu": {
|
|
"Quickstart": "quickstart",
|
|
"Instructions": "instructions",
|
|
"Troubleshooting": "troubleshooting",
|
|
"Changelog": "changelog"
|
|
}
|
|
},
|
|
|
|
"models": {
|
|
"title": "Models & Languages",
|
|
"next": "facts-figures",
|
|
"quickstart": true,
|
|
"menu": {
|
|
"Quickstart": "quickstart",
|
|
"Available Models": "available",
|
|
"Installation & Usage": "install",
|
|
"Language Support": "languages",
|
|
"Production Use": "production"
|
|
}
|
|
},
|
|
|
|
"facts-figures": {
|
|
"title": "Facts & Figures",
|
|
"teaser": "The hard numbers for spaCy and how it compares to other libraries and tools.",
|
|
"next": "spacy-101",
|
|
"menu": {
|
|
"Feature comparison": "comparison",
|
|
"Benchmarks": "benchmarks",
|
|
"Powered by spaCy": "powered-by",
|
|
"Other Libraries": "other-libraries"
|
|
}
|
|
},
|
|
|
|
"spacy-101": {
|
|
"title": "spaCy 101: Everything you need to know",
|
|
"teaser": "The most important concepts, explained in simple terms.",
|
|
"next": "index",
|
|
"quickstart": true,
|
|
"preview": "101",
|
|
"menu": {
|
|
"Features": "features",
|
|
"Lightning tour": "lightning-tour",
|
|
"Architecture": "architecture",
|
|
"Community & FAQ": "community-faq"
|
|
}
|
|
},
|
|
|
|
"v2": {
|
|
"title": "What's New in v2.0",
|
|
"teaser": "New features, backwards incompatibilities and migration guide.",
|
|
"menu": {
|
|
"Summary": "summary",
|
|
"New features": "features",
|
|
"Backwards Incompatibilities": "incompat",
|
|
"Migrating from v1.x": "migrating",
|
|
"Benchmarks": "benchmarks"
|
|
}
|
|
},
|
|
|
|
"linguistic-features": {
|
|
"title": "Linguistic Features",
|
|
"teaser": "Using spaCy to extract linguistic features like part-of-speech tags, dependency labels and named entities, customising the tokenizer and working with the rule-based matcher.",
|
|
"next": "processing-pipelines",
|
|
"menu": {
|
|
"POS Tagging": "pos-tagging",
|
|
"Dependency Parse": "dependency-parse",
|
|
"Named Entities": "named-entities",
|
|
"Tokenization": "tokenization",
|
|
"Rule-based Matching": "rule-based-matching"
|
|
}
|
|
},
|
|
|
|
"processing-pipelines": {
|
|
"title": "Language Processing Pipelines",
|
|
"next": "vectors-similarity",
|
|
"menu": {
|
|
"How Pipelines Work": "pipelines",
|
|
"Custom Components": "custom-components",
|
|
"Extension Attributes": "custom-components-extensions",
|
|
"Multi-Threading": "multithreading",
|
|
"Serialization": "serialization"
|
|
}
|
|
},
|
|
|
|
"vectors-similarity": {
|
|
"title": "Word Vectors and Semantic Similarity",
|
|
"menu": {
|
|
"Basics": "basics",
|
|
"Custom Vectors": "custom",
|
|
"GPU Usage": "gpu"
|
|
}
|
|
},
|
|
|
|
"training": {
|
|
"title": "Training spaCy's Statistical Models",
|
|
"next": "adding-languages",
|
|
"menu": {
|
|
"Basics": "basics",
|
|
"NER": "ner",
|
|
"Tagger & Parser": "tagger-parser",
|
|
"Text Classification": "textcat",
|
|
"Tips and Advice": "tips",
|
|
"Saving & Loading": "saving-loading"
|
|
}
|
|
},
|
|
|
|
"adding-languages": {
|
|
"title": "Adding Languages",
|
|
"teaser": "Adding full support for a language touches many different parts of the spaCy library. This guide explains how to fit everything together, and points you to the specific workflows for each component.",
|
|
"next": "training",
|
|
"menu": {
|
|
"Language data": "language-data",
|
|
"Testing": "testing",
|
|
"Training": "training"
|
|
}
|
|
},
|
|
|
|
"visualizers": {
|
|
"title": "Visualizers",
|
|
"tag_new": 2,
|
|
"teaser": "Visualize dependencies and entities in your browser and notebook, or export HTML.",
|
|
"menu": {
|
|
"Dependencies": "dep",
|
|
"Entities": "ent",
|
|
"Jupyter Notebooks": "jupyter",
|
|
"Rendering HTML": "html"
|
|
}
|
|
},
|
|
|
|
"examples": {
|
|
"title": "Code Examples",
|
|
"teaser": "Full code examples you can modify and run.",
|
|
"menu": {
|
|
"Information Extraction": "information-extraction",
|
|
"Pipeline": "pipeline",
|
|
"Training": "training",
|
|
"Vectors & Similarity": "vectors",
|
|
"Deep Learning": "deep-learning"
|
|
}
|
|
}
|
|
}
|