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" : {
"Code Examples" : "examples" ,
"Resources" : "resources"
}
} ,
"index" : {
"title" : "Install spaCy" ,
"next" : "models" ,
"quickstart" : true ,
"changelog" : 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" : {
2017-11-01 16:13:36 +03:00
"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" ,
"Rule-based Matching" : "rule-based-matching"
}
} ,
"processing-pipelines" : {
"title" : "Language Processing Pipelines" ,
"next" : "vectors-similarity" ,
"menu" : {
2017-10-07 16:27:28 +03:00
"How Pipelines Work" : "pipelines" ,
"Custom Components" : "custom-components" ,
2017-10-10 05:24:39 +03:00
"Developing Extensions" : "extensions" ,
2017-10-27 02:58:55 +03:00
"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" ,
"next" : "text-classification" ,
"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" ,
2017-10-03 20:40:39 +03:00
"tag_new" : 2 ,
"teaser" : "Visualize dependencies and entities in your browser and notebook, or export HTML." ,
"next" : "resources" ,
"menu" : {
"Dependencies" : "dep" ,
"Entities" : "ent" ,
"Jupyter Notebooks" : "jupyter" ,
"Rendering HTML" : "html"
}
2017-10-03 15:26:20 +03:00
} ,
"resources" : {
"title" : "Resources" ,
"teaser" : "Libraries, demos, books, courses and research systems featuring spaCy." ,
2017-11-07 16:48:17 +03:00
"next" : "examples" ,
2017-10-03 15:26:20 +03:00
"menu" : {
"Third-party libraries" : "libraries" ,
2017-10-13 01:18:13 +03:00
"Extensions" : "extensions" ,
2017-10-03 15:26:20 +03:00
"Demos & Visualizations" : "demos" ,
"Books & Courses" : "books" ,
"Jupyter Notebooks" : "notebooks" ,
"Research" : "research"
}
} ,
"examples" : {
"title" : "Code Examples" ,
"teaser" : "Full code examples you can modify and run." ,
"next" : "resources" ,
"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" ,
2017-10-26 19:47:02 +03:00
"Vectors & Similarity" : "vectors" ,
2017-10-03 15:26:20 +03:00
"Deep Learning" : "deep-learning"
}
}
}