2017-06-02 11:57:42 +03:00
|
|
|
import pytest
|
2020-05-19 16:59:14 +03:00
|
|
|
import pickle
|
2018-07-25 00:38:44 +03:00
|
|
|
from spacy.vocab import Vocab
|
|
|
|
from spacy.strings import StringStore
|
|
|
|
|
|
|
|
from ..util import make_tempdir
|
2017-06-02 11:57:42 +03:00
|
|
|
|
|
|
|
|
2018-11-27 03:09:36 +03:00
|
|
|
test_strings = [([], []), (["rats", "are", "cute"], ["i", "like", "rats"])]
|
|
|
|
test_strings_attrs = [(["rats", "are", "cute"], "Hello")]
|
2017-06-02 11:57:42 +03:00
|
|
|
|
|
|
|
|
2018-11-27 03:09:36 +03:00
|
|
|
@pytest.mark.parametrize("text", ["rat"])
|
2018-07-25 00:38:44 +03:00
|
|
|
def test_serialize_vocab(en_vocab, text):
|
|
|
|
text_hash = en_vocab.strings.add(text)
|
2019-09-09 20:17:55 +03:00
|
|
|
vocab_bytes = en_vocab.to_bytes(exclude=["lookups"])
|
2018-07-25 00:38:44 +03:00
|
|
|
new_vocab = Vocab().from_bytes(vocab_bytes)
|
2019-03-10 18:36:29 +03:00
|
|
|
assert new_vocab.strings[text_hash] == text
|
2019-09-09 20:17:55 +03:00
|
|
|
assert new_vocab.to_bytes(exclude=["lookups"]) == vocab_bytes
|
2018-07-25 00:38:44 +03:00
|
|
|
|
|
|
|
|
2018-11-27 03:09:36 +03:00
|
|
|
@pytest.mark.parametrize("strings1,strings2", test_strings)
|
2018-07-25 00:38:44 +03:00
|
|
|
def test_serialize_vocab_roundtrip_bytes(strings1, strings2):
|
2017-06-02 11:57:42 +03:00
|
|
|
vocab1 = Vocab(strings=strings1)
|
|
|
|
vocab2 = Vocab(strings=strings2)
|
|
|
|
vocab1_b = vocab1.to_bytes()
|
|
|
|
vocab2_b = vocab2.to_bytes()
|
|
|
|
if strings1 == strings2:
|
|
|
|
assert vocab1_b == vocab2_b
|
|
|
|
else:
|
|
|
|
assert vocab1_b != vocab2_b
|
|
|
|
vocab1 = vocab1.from_bytes(vocab1_b)
|
|
|
|
assert vocab1.to_bytes() == vocab1_b
|
|
|
|
new_vocab1 = Vocab().from_bytes(vocab1_b)
|
|
|
|
assert new_vocab1.to_bytes() == vocab1_b
|
2020-08-07 16:27:13 +03:00
|
|
|
assert len(new_vocab1.strings) == len(strings1)
|
|
|
|
assert sorted([s for s in new_vocab1.strings]) == sorted(strings1)
|
2017-06-02 11:57:42 +03:00
|
|
|
|
|
|
|
|
2018-11-27 03:09:36 +03:00
|
|
|
@pytest.mark.parametrize("strings1,strings2", test_strings)
|
|
|
|
def test_serialize_vocab_roundtrip_disk(strings1, strings2):
|
2017-06-02 11:57:42 +03:00
|
|
|
vocab1 = Vocab(strings=strings1)
|
|
|
|
vocab2 = Vocab(strings=strings2)
|
|
|
|
with make_tempdir() as d:
|
2018-11-27 03:09:36 +03:00
|
|
|
file_path1 = d / "vocab1"
|
|
|
|
file_path2 = d / "vocab2"
|
2017-06-02 11:57:42 +03:00
|
|
|
vocab1.to_disk(file_path1)
|
|
|
|
vocab2.to_disk(file_path2)
|
|
|
|
vocab1_d = Vocab().from_disk(file_path1)
|
|
|
|
vocab2_d = Vocab().from_disk(file_path2)
|
2020-05-19 16:59:14 +03:00
|
|
|
# check strings rather than lexemes, which are only reloaded on demand
|
2021-04-09 12:53:13 +03:00
|
|
|
assert set(strings1) == set([s for s in vocab1_d.strings])
|
|
|
|
assert set(strings2) == set([s for s in vocab2_d.strings])
|
|
|
|
if set(strings1) == set(strings2):
|
2020-08-07 16:27:13 +03:00
|
|
|
assert [s for s in vocab1_d.strings] == [s for s in vocab2_d.strings]
|
2017-06-02 11:57:42 +03:00
|
|
|
else:
|
2020-08-07 16:27:13 +03:00
|
|
|
assert [s for s in vocab1_d.strings] != [s for s in vocab2_d.strings]
|
2017-06-02 11:57:42 +03:00
|
|
|
|
|
|
|
|
2018-11-27 03:09:36 +03:00
|
|
|
@pytest.mark.parametrize("strings,lex_attr", test_strings_attrs)
|
2017-06-02 11:57:42 +03:00
|
|
|
def test_serialize_vocab_lex_attrs_bytes(strings, lex_attr):
|
|
|
|
vocab1 = Vocab(strings=strings)
|
|
|
|
vocab2 = Vocab()
|
|
|
|
vocab1[strings[0]].norm_ = lex_attr
|
|
|
|
assert vocab1[strings[0]].norm_ == lex_attr
|
|
|
|
assert vocab2[strings[0]].norm_ != lex_attr
|
|
|
|
vocab2 = vocab2.from_bytes(vocab1.to_bytes())
|
|
|
|
assert vocab2[strings[0]].norm_ == lex_attr
|
|
|
|
|
|
|
|
|
2019-03-10 18:36:29 +03:00
|
|
|
@pytest.mark.parametrize("strings,lex_attr", test_strings_attrs)
|
|
|
|
def test_deserialize_vocab_seen_entries(strings, lex_attr):
|
|
|
|
# Reported in #2153
|
|
|
|
vocab = Vocab(strings=strings)
|
|
|
|
vocab.from_bytes(vocab.to_bytes())
|
2020-08-07 16:27:13 +03:00
|
|
|
assert len(vocab.strings) == len(strings)
|
2019-03-10 18:36:29 +03:00
|
|
|
|
|
|
|
|
2018-11-27 03:09:36 +03:00
|
|
|
@pytest.mark.parametrize("strings,lex_attr", test_strings_attrs)
|
2017-06-02 11:57:42 +03:00
|
|
|
def test_serialize_vocab_lex_attrs_disk(strings, lex_attr):
|
|
|
|
vocab1 = Vocab(strings=strings)
|
|
|
|
vocab2 = Vocab()
|
|
|
|
vocab1[strings[0]].norm_ = lex_attr
|
|
|
|
assert vocab1[strings[0]].norm_ == lex_attr
|
|
|
|
assert vocab2[strings[0]].norm_ != lex_attr
|
|
|
|
with make_tempdir() as d:
|
2018-11-27 03:09:36 +03:00
|
|
|
file_path = d / "vocab"
|
2017-06-02 11:57:42 +03:00
|
|
|
vocab1.to_disk(file_path)
|
|
|
|
vocab2 = vocab2.from_disk(file_path)
|
|
|
|
assert vocab2[strings[0]].norm_ == lex_attr
|
2018-07-25 00:38:44 +03:00
|
|
|
|
|
|
|
|
2018-11-27 03:09:36 +03:00
|
|
|
@pytest.mark.parametrize("strings1,strings2", test_strings)
|
2018-07-25 00:38:44 +03:00
|
|
|
def test_serialize_stringstore_roundtrip_bytes(strings1, strings2):
|
|
|
|
sstore1 = StringStore(strings=strings1)
|
|
|
|
sstore2 = StringStore(strings=strings2)
|
|
|
|
sstore1_b = sstore1.to_bytes()
|
|
|
|
sstore2_b = sstore2.to_bytes()
|
2021-04-09 12:53:13 +03:00
|
|
|
if set(strings1) == set(strings2):
|
2018-07-25 00:38:44 +03:00
|
|
|
assert sstore1_b == sstore2_b
|
|
|
|
else:
|
|
|
|
assert sstore1_b != sstore2_b
|
|
|
|
sstore1 = sstore1.from_bytes(sstore1_b)
|
|
|
|
assert sstore1.to_bytes() == sstore1_b
|
|
|
|
new_sstore1 = StringStore().from_bytes(sstore1_b)
|
|
|
|
assert new_sstore1.to_bytes() == sstore1_b
|
2021-04-09 12:53:13 +03:00
|
|
|
assert set(new_sstore1) == set(strings1)
|
2018-07-25 00:38:44 +03:00
|
|
|
|
|
|
|
|
2018-11-27 03:09:36 +03:00
|
|
|
@pytest.mark.parametrize("strings1,strings2", test_strings)
|
2018-07-25 00:38:44 +03:00
|
|
|
def test_serialize_stringstore_roundtrip_disk(strings1, strings2):
|
|
|
|
sstore1 = StringStore(strings=strings1)
|
|
|
|
sstore2 = StringStore(strings=strings2)
|
|
|
|
with make_tempdir() as d:
|
2018-11-27 03:09:36 +03:00
|
|
|
file_path1 = d / "strings1"
|
|
|
|
file_path2 = d / "strings2"
|
2018-07-25 00:38:44 +03:00
|
|
|
sstore1.to_disk(file_path1)
|
|
|
|
sstore2.to_disk(file_path2)
|
|
|
|
sstore1_d = StringStore().from_disk(file_path1)
|
|
|
|
sstore2_d = StringStore().from_disk(file_path2)
|
2021-04-09 12:53:13 +03:00
|
|
|
assert set(sstore1_d) == set(sstore1)
|
|
|
|
assert set(sstore2_d) == set(sstore2)
|
|
|
|
if set(strings1) == set(strings2):
|
|
|
|
assert set(sstore1_d) == set(sstore2_d)
|
2018-07-25 00:38:44 +03:00
|
|
|
else:
|
2021-04-09 12:53:13 +03:00
|
|
|
assert set(sstore1_d) != set(sstore2_d)
|
2020-05-19 16:59:14 +03:00
|
|
|
|
2020-05-21 15:14:01 +03:00
|
|
|
|
2020-05-19 16:59:14 +03:00
|
|
|
@pytest.mark.parametrize("strings,lex_attr", test_strings_attrs)
|
|
|
|
def test_pickle_vocab(strings, lex_attr):
|
|
|
|
vocab = Vocab(strings=strings)
|
|
|
|
vocab[strings[0]].norm_ = lex_attr
|
|
|
|
vocab_pickled = pickle.dumps(vocab)
|
|
|
|
vocab_unpickled = pickle.loads(vocab_pickled)
|
|
|
|
assert vocab.to_bytes() == vocab_unpickled.to_bytes()
|