From d3385f4be254bfb3a36ab8404ede3509e9bc7dc6 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Tue, 21 Jul 2020 13:06:22 +0200 Subject: [PATCH] Add Morphology and MorphAnalysis to overview --- website/docs/usage/101/_architecture.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/docs/usage/101/_architecture.md b/website/docs/usage/101/_architecture.md index 95158b67d..d2e1aee39 100644 --- a/website/docs/usage/101/_architecture.md +++ b/website/docs/usage/101/_architecture.md @@ -24,6 +24,7 @@ an **annotated document**. It also orchestrates training and serialization. | [`Span`](/api/span) | A slice from a `Doc` object. | | [`Token`](/api/token) | An individual token — i.e. a word, punctuation symbol, whitespace, etc. | | [`Lexeme`](/api/lexeme) | An entry in the vocabulary. It's a word type with no context, as opposed to a word token. It therefore has no part-of-speech tag, dependency parse etc. | +| [`MorphAnalysis`](/api/morphanalysis) | A morphological analysis. | ### Processing pipeline {#architecture-pipeline} @@ -32,7 +33,7 @@ an **annotated document**. It also orchestrates training and serialization. | [`Language`](/api/language) | A text-processing pipeline. Usually you'll load this once per process as `nlp` and pass the instance around your application. | | [`Tokenizer`](/api/tokenizer) | Segment text, and create `Doc` objects with the discovered segment boundaries. | | [`Lemmatizer`](/api/lemmatizer) | Determine the base forms of words. | -| `Morphology` | Assign linguistic features like lemmas, noun case, verb tense etc. based on the word and its part-of-speech tag. | +| [`Morphology`](/api/morphology) | Assign linguistic features like lemmas, noun case, verb tense etc. based on the word and its part-of-speech tag. | | [`Tagger`](/api/tagger) | Annotate part-of-speech tags on `Doc` objects. | | [`DependencyParser`](/api/dependencyparser) | Annotate syntactic dependencies on `Doc` objects. | | [`EntityRecognizer`](/api/entityrecognizer) | Annotate named entities, e.g. persons or products, on `Doc` objects. |