mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
3e8f136ba7
* Improve load_language_data helper * WIP: Add Lookups implementation * Start moving lemma data over to JSON * WIP: move data over for more languages * Convert more languages * Fix lemmatizer fixtures in tests * Finish conversion * Auto-format JSON files * Fix test for now * Make sure tables are stored on instance * Update docstrings * Update docstrings and errors * Update test * Add Lookups.__len__ * Add serialization methods * Add Lookups.remove_table * Use msgpack for serialization to disk * Fix file exists check * Try using OrderedDict for everything * Update .flake8 [ci skip] * Try fixing serialization * Update test_lookups.py * Update test_serialize_vocab_strings.py * Fix serialization for lookups * Fix lookups * Fix lookups * Fix lookups * Try to fix serialization * Try to fix serialization * Try to fix serialization * Try to fix serialization * Give up on serialization test * Xfail more serialization tests for 3.5 * Fix lookups for 2.7
11 lines
197 B
INI
11 lines
197 B
INI
[flake8]
|
|
ignore = E203, E266, E501, E731, W503
|
|
max-line-length = 80
|
|
select = B,C,E,F,W,T4,B9
|
|
exclude =
|
|
.env,
|
|
.git,
|
|
__pycache__,
|
|
_tokenizer_exceptions_list.py,
|
|
spacy/__init__.py
|