2021-05-31 11:36:52 +03:00
|
|
|
import spacy
|
|
|
|
from spacy.lang.en import English
|
|
|
|
from ..util import make_tempdir
|
|
|
|
|
|
|
|
|
|
|
|
def test_issue8190():
|
|
|
|
"""Test that config overrides are not lost after load is complete."""
|
|
|
|
source_cfg = {
|
|
|
|
"nlp": {
|
|
|
|
"lang": "en",
|
|
|
|
},
|
2021-06-28 12:48:00 +03:00
|
|
|
"custom": {"key": "value"},
|
2021-05-31 11:36:52 +03:00
|
|
|
}
|
|
|
|
source_nlp = English.from_config(source_cfg)
|
|
|
|
with make_tempdir() as dir_path:
|
|
|
|
# We need to create a loadable source pipeline
|
|
|
|
source_path = dir_path / "test_model"
|
|
|
|
source_nlp.to_disk(source_path)
|
2021-06-28 12:48:00 +03:00
|
|
|
nlp = spacy.load(source_path, config={"custom": {"key": "updated_value"}})
|
2021-05-31 11:36:52 +03:00
|
|
|
|
|
|
|
assert nlp.config["custom"]["key"] == "updated_value"
|