spaCy/website/usage/_data.json

169 lines
5.3 KiB
JSON
Raw Normal View History

2017-10-03 15:26:20 +03:00
{
"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": {
💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) * 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
2018-04-29 03:06:46 +03:00
"Code Examples": "examples"
2017-10-03 15:26:20 +03:00
}
},
"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",
2017-10-03 15:26:20 +03:00
"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",
"Sentence Segmentation": "sbd",
2017-10-03 15:26:20 +03:00
"Rule-based Matching": "rule-based-matching"
}
},
"processing-pipelines": {
"title": "Language Processing Pipelines",
"next": "vectors-similarity",
"menu": {
"How Pipelines Work": "pipelines",
"Custom Components": "custom-components",
💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) * 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
2018-04-29 03:06:46 +03:00
"Extension Attributes": "custom-components-extensions",
"Multi-Threading": "multithreading",
2017-10-10 05:24:39 +03:00
"Serialization": "serialization"
2017-10-03 15:26:20 +03:00
}
},
"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",
2017-11-07 03:05:37 +03:00
"Tips and Advice": "tips",
2017-10-03 15:26:20 +03:00
"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"
}
2017-10-03 15:26:20 +03:00
},
"examples": {
"title": "Code Examples",
"teaser": "Full code examples you can modify and run.",
"menu": {
2017-10-26 19:46:11 +03:00
"Information Extraction": "information-extraction",
2017-10-10 05:26:06 +03:00
"Pipeline": "pipeline",
2017-10-03 15:26:20 +03:00
"Training": "training",
"Vectors & Similarity": "vectors",
2017-10-03 15:26:20 +03:00
"Deep Learning": "deep-learning"
}
}
}