mirror of
https://github.com/explosion/spaCy.git
synced 2025-07-11 00:32:40 +03:00
Update links to dev resources
This commit is contained in:
parent
1694c24e52
commit
144161c58c
|
@ -132,6 +132,18 @@ p
|
||||||
| Functions for setting lexical attributes on tokens, e.g.
|
| Functions for setting lexical attributes on tokens, e.g.
|
||||||
| #[code is_punct] or #[code like_num].
|
| #[code is_punct] or #[code like_num].
|
||||||
|
|
||||||
|
+row
|
||||||
|
+cell #[+src(gh("spacy-dev-resources", "templates/new_language/lemmatizer.py")) lemmatizer.py]
|
||||||
|
+cell #[code LOOKUP] (dict)
|
||||||
|
+cell
|
||||||
|
| Lookup-based lemmatization table. If more lemmatizer data is
|
||||||
|
| available, it should live in #[code /lemmatizer/lookup.py].
|
||||||
|
|
||||||
|
+row
|
||||||
|
+cell /lemmatizer
|
||||||
|
+cell #[code LEMMA_RULES], #[code LEMMA_INDEX], #[code LEMMA_EXC] (dicts)
|
||||||
|
+cell Lemmatization rules, keyed by part of speech.
|
||||||
|
|
||||||
+row
|
+row
|
||||||
+cell #[+src(gh("spacy-dev-resources", "templates/new_language/tag_map.py")) tag_map.py]
|
+cell #[+src(gh("spacy-dev-resources", "templates/new_language/tag_map.py")) tag_map.py]
|
||||||
+cell #[code TAG_MAP] (dict)
|
+cell #[code TAG_MAP] (dict)
|
||||||
|
@ -145,18 +157,6 @@ p
|
||||||
+cell #[code MORPH_RULES] (dict)
|
+cell #[code MORPH_RULES] (dict)
|
||||||
+cell Exception rules for morphological analysis of irregular words.
|
+cell Exception rules for morphological analysis of irregular words.
|
||||||
|
|
||||||
+row
|
|
||||||
+cell #[+src(gh("spacy-dev-resources", "templates/new_language/lemmatizer.py")) lemmatizer.py]
|
|
||||||
+cell #[code LOOKUP] (dict)
|
|
||||||
+cell
|
|
||||||
| Lookup-based lemmatization table. If more lemmatizer data is
|
|
||||||
| available, it should live in #[code /lemmatizer/lookup.py].
|
|
||||||
|
|
||||||
+row
|
|
||||||
+cell /lemmatizer
|
|
||||||
+cell #[code LEMMA_RULES], #[code LEMMA_INDEX], #[code LEMMA_EXC] (dicts)
|
|
||||||
+cell Lemmatization rules, keyed by part of speech.
|
|
||||||
|
|
||||||
+aside("Should I ever update the global data?")
|
+aside("Should I ever update the global data?")
|
||||||
| Reuseable language data is collected as atomic pieces in the root of the
|
| Reuseable language data is collected as atomic pieces in the root of the
|
||||||
| #[+src(gh("spaCy", "lang")) spacy.lang] package. Often, when a new
|
| #[+src(gh("spaCy", "lang")) spacy.lang] package. Often, when a new
|
||||||
|
|
Loading…
Reference in New Issue
Block a user