spaCy/spacy/lang
Adriane Boyd e962784531
Add Lemmatizer and simplify related components (#5848)
* Add Lemmatizer and simplify related components

* Add `Lemmatizer` pipe with `lookup` and `rule` modes using the
`Lookups` tables.
* Reduce `Tagger` to a simple tagger that sets `Token.tag` (no pos or lemma)
* Reduce `Morphology` to only keep track of morph tags (no tag map, lemmatizer,
or morph rules)
* Remove lemmatizer from `Vocab`
* Adjust many many tests

Differences:

* No default lookup lemmas
* No special treatment of TAG in `from_array` and similar required
* Easier to modify labels in a `Tagger`
* No extra strings added from morphology / tag map

* Fix test

* Initial fix for Lemmatizer config/serialization

* Adjust init test to be more generic

* Adjust init test to force empty Lookups

* Add simple cache to rule-based lemmatizer

* Convert language-specific lemmatizers

Convert language-specific lemmatizers to component lemmatizers. Remove
previous lemmatizer class.

* Fix French and Polish lemmatizers

* Remove outdated UPOS conversions

* Update Russian lemmatizer init in tests

* Add minimal init/run tests for custom lemmatizers

* Add option to overwrite existing lemmas

* Update mode setting, lookup loading, and caching

* Make `mode` an immutable property
* Only enforce strict `load_lookups` for known supported modes
* Move caching into individual `_lemmatize` methods

* Implement strict when lang is not found in lookups

* Fix tables/lookups in make_lemmatizer

* Reallow provided lookups and allow for stricter checks

* Add lookups asset to all Lemmatizer pipe tests

* Rename lookups in lemmatizer init test

* Clean up merge

* Refactor lookup table loading

* Add helper from `load_lemmatizer_lookups` that loads required and
optional lookups tables based on settings provided by a config.

Additional slight refactor of lookups:

* Add `Lookups.set_table` to set a table from a provided `Table`
* Reorder class definitions to be able to specify type as `Table`

* Move registry assets into test methods

* Refactor lookups tables config

Use class methods within `Lemmatizer` to provide the config for
particular modes and to load the lookups from a config.

* Add pipe and score to lemmatizer

* Simplify Tagger.score

* Add missing import

* Clean up imports and auto-format

* Remove unused kwarg

* Tidy up and auto-format

* Update docstrings for Lemmatizer

Update docstrings for Lemmatizer.

Additionally modify `is_base_form` API to take `Token` instead of
individual features.

* Update docstrings

* Remove tag map values from Tagger.add_label

* Update API docs

* Fix relative link in Lemmatizer API docs
2020-08-07 15:27:13 +02:00
..
af Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
ar Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
bg Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
bn Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
ca Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
cs Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
da Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
de Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
el Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
en Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
es Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
et Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
eu Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
fa Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
fi Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
fr Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
ga Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
gu Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
he Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
hi Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
hr Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
hu Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
hy Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
id Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
is Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
it Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
ja Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
kn Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
ko Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
lb Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
lij Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
lt Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
lv Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
ml Add missing lex_attr_getters (resolves #5806 ) 2020-07-25 12:55:18 +02:00
mr Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
nb Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
ne Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
nl Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
pl Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
pt Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
ro Add missing lex_attr_getters (resolves #5806 ) 2020-07-25 12:55:18 +02:00
ru Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
si Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
sk Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
sl Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
sq Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
sr Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
sv Tidy up [ci skip] 2020-07-25 13:00:49 +02:00
ta Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
te Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
th Use "raise ... from" in custom errors for better tracebacks 2020-08-05 23:53:21 +02:00
tl Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
tr Add missing lex_attr_getters (resolves #5806 ) 2020-07-25 12:55:18 +02:00
tt Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
uk Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
ur Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
vi Use "raise ... from" in custom errors for better tracebacks 2020-08-05 23:53:21 +02:00
xx Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
yo Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
zh Use "raise ... from" in custom errors for better tracebacks 2020-08-05 23:53:21 +02:00
__init__.py Remove imports in /lang/__init__.py 2017-05-08 23:58:07 +02:00
char_classes.py Merge branch 'master' into develop 2020-02-18 14:47:23 +01:00
lex_attrs.py Refactor pipeline components, config and language data (#5759) 2020-07-22 13:42:59 +02:00
norm_exceptions.py Tidy up and auto-format 2020-02-18 15:38:18 +01:00
punctuation.py Simplify language data and revert detailed configs 2020-07-24 14:50:26 +02:00
tokenizer_exceptions.py Remove POS, TAG and LEMMA from tokenizer exceptions 2020-07-22 23:09:01 +02:00