spaCy/spacy/tests/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
..
ar Remove POS, TAG and LEMMA from tokenizer exceptions 2020-07-22 23:09:01 +02:00
bn Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
ca Remove POS, TAG and LEMMA from tokenizer exceptions 2020-07-22 23:09:01 +02:00
da Merge branch 'develop' into master-tmp 2020-05-21 18:39:06 +02:00
de Remove POS, TAG and LEMMA from tokenizer exceptions 2020-07-22 23:09:01 +02:00
el Remove unicode declarations and tidy up 2020-06-21 22:34:10 +02:00
en Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
es Remove POS, TAG and LEMMA from tokenizer exceptions 2020-07-22 23:09:01 +02:00
eu Merge branch 'develop' into master-tmp 2020-05-21 18:39:06 +02:00
fa Remove unicode declarations and tidy up 2020-06-21 22:34:10 +02:00
fi Merge branch 'master' into tmp/sync 2020-03-26 13:38:14 +01:00
fr Remove POS, TAG and LEMMA from tokenizer exceptions 2020-07-22 23:09:01 +02:00
ga Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
gu Remove unicode declarations and tidy up 2020-06-21 22:34:10 +02:00
he Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
hu Tidy up and auto-format 2020-03-25 12:28:12 +01:00
hy Remove unicode declarations and tidy up 2020-06-21 22:34:10 +02:00
id Remove unicode declarations and tidy up 2020-06-21 22:34:10 +02:00
it Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
ja Tidy up, autoformat, add types 2020-07-25 15:01:15 +02:00
ko Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
lb Remove POS, TAG and LEMMA from tokenizer exceptions 2020-07-22 23:09:01 +02:00
lt Merge branch 'master' into tmp/sync 2020-03-26 13:38:14 +01:00
ml Remove unicode declarations and tidy up 2020-06-21 22:34:10 +02:00
nb Remove unicode declarations and tidy up 2020-06-21 22:34:10 +02:00
ne Tidy up, autoformat, add types 2020-07-25 15:01:15 +02:00
nl Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
pl Merge branch 'develop' into master-tmp 2020-05-21 18:39:06 +02:00
pt Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
ro Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
ru Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00
sr Un-xfail passing tests 2019-12-25 18:02:20 +01:00
sv Remove unicode declarations and tidy up 2020-06-21 22:34:10 +02:00
th Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
tr Move lookup tables out of the core library (#4346) 2019-10-01 00:01:27 +02:00
tt Merge branch 'master' into develop 2020-02-18 14:47:23 +01:00
uk Test suite clean up (#5781) 2020-07-20 14:49:54 +02:00
ur Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
yo Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
zh Tidy up and auto-format 2020-08-05 16:00:59 +02:00
__init__.py Revert #4334 2019-09-29 17:32:12 +02:00
test_attrs.py Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
test_initialize.py Drop Python 2.7 and 3.5 (#4828) 2019-12-22 01:53:56 +01:00
test_lemmatizers.py Add Lemmatizer and simplify related components (#5848) 2020-08-07 15:27:13 +02:00