2019-02-14 17:27:13 +03:00
|
|
|
import pytest
|
2019-02-14 21:56:38 +03:00
|
|
|
from spacy.vocab import Vocab
|
2019-02-24 20:38:47 +03:00
|
|
|
from spacy.tokens import Doc, Token
|
2019-02-14 21:56:38 +03:00
|
|
|
|
2019-02-14 17:27:13 +03:00
|
|
|
|
2019-02-24 16:14:11 +03:00
|
|
|
def test_doc_retokenize_split(en_vocab):
|
2019-02-15 14:56:51 +03:00
|
|
|
words = ["LosAngeles", "start", "."]
|
2020-09-21 21:43:54 +03:00
|
|
|
heads = [1, 2, 2]
|
2021-01-12 19:17:06 +03:00
|
|
|
deps = ["dep"] * len(heads)
|
|
|
|
doc = Doc(en_vocab, words=words, heads=heads, deps=deps)
|
2019-02-14 17:27:13 +03:00
|
|
|
assert len(doc) == 3
|
|
|
|
assert len(str(doc)) == 19
|
2019-02-14 21:56:38 +03:00
|
|
|
assert doc[0].head.text == "start"
|
|
|
|
assert doc[1].head.text == "."
|
2019-02-14 17:27:13 +03:00
|
|
|
with doc.retokenize() as retokenizer:
|
2019-02-15 19:32:31 +03:00
|
|
|
retokenizer.split(
|
|
|
|
doc[0],
|
|
|
|
["Los", "Angeles"],
|
|
|
|
[(doc[0], 1), doc[1]],
|
|
|
|
attrs={
|
2019-02-17 14:22:07 +03:00
|
|
|
"tag": ["NNP"] * 2,
|
2019-02-15 19:32:31 +03:00
|
|
|
"lemma": ["Los", "Angeles"],
|
2019-02-17 14:22:07 +03:00
|
|
|
"ent_type": ["GPE"] * 2,
|
2020-01-29 19:45:46 +03:00
|
|
|
"morph": ["Number=Sing"] * 2,
|
2019-02-15 19:32:31 +03:00
|
|
|
},
|
|
|
|
)
|
2019-02-14 17:27:13 +03:00
|
|
|
assert len(doc) == 4
|
2019-02-14 21:56:38 +03:00
|
|
|
assert doc[0].text == "Los"
|
|
|
|
assert doc[0].head.text == "Angeles"
|
2019-02-14 17:27:13 +03:00
|
|
|
assert doc[0].idx == 0
|
2020-10-01 23:21:46 +03:00
|
|
|
assert str(doc[0].morph) == "Number=Sing"
|
2019-02-14 17:27:13 +03:00
|
|
|
assert doc[1].idx == 3
|
2019-02-14 21:56:38 +03:00
|
|
|
assert doc[1].text == "Angeles"
|
|
|
|
assert doc[1].head.text == "start"
|
2020-10-01 23:21:46 +03:00
|
|
|
assert str(doc[1].morph) == "Number=Sing"
|
2019-02-14 21:56:38 +03:00
|
|
|
assert doc[2].text == "start"
|
|
|
|
assert doc[2].head.text == "."
|
|
|
|
assert doc[3].text == "."
|
|
|
|
assert doc[3].head.text == "."
|
2019-02-14 17:27:13 +03:00
|
|
|
assert len(str(doc)) == 19
|
|
|
|
|
2019-02-14 21:56:38 +03:00
|
|
|
|
2021-01-06 07:29:44 +03:00
|
|
|
def test_doc_retokenize_split_lemmas(en_vocab):
|
|
|
|
# If lemmas are not set, leave unset
|
|
|
|
words = ["LosAngeles", "start", "."]
|
|
|
|
heads = [1, 2, 2]
|
2021-06-15 14:23:32 +03:00
|
|
|
deps = ["dep"] * len(heads)
|
|
|
|
doc = Doc(en_vocab, words=words, heads=heads, deps=deps)
|
2021-01-06 07:29:44 +03:00
|
|
|
with doc.retokenize() as retokenizer:
|
|
|
|
retokenizer.split(
|
|
|
|
doc[0],
|
|
|
|
["Los", "Angeles"],
|
|
|
|
[(doc[0], 1), doc[1]],
|
|
|
|
)
|
|
|
|
assert doc[0].lemma_ == ""
|
|
|
|
assert doc[1].lemma_ == ""
|
|
|
|
|
|
|
|
# If lemmas are set, use split orth as default lemma
|
|
|
|
words = ["LosAngeles", "start", "."]
|
|
|
|
heads = [1, 2, 2]
|
2021-06-15 14:23:32 +03:00
|
|
|
deps = ["dep"] * len(heads)
|
|
|
|
doc = Doc(en_vocab, words=words, heads=heads, deps=deps)
|
2021-01-06 07:29:44 +03:00
|
|
|
for t in doc:
|
|
|
|
t.lemma_ = "a"
|
|
|
|
with doc.retokenize() as retokenizer:
|
|
|
|
retokenizer.split(
|
|
|
|
doc[0],
|
|
|
|
["Los", "Angeles"],
|
|
|
|
[(doc[0], 1), doc[1]],
|
|
|
|
)
|
|
|
|
assert doc[0].lemma_ == "Los"
|
|
|
|
assert doc[1].lemma_ == "Angeles"
|
|
|
|
|
|
|
|
|
2019-02-24 16:14:11 +03:00
|
|
|
def test_doc_retokenize_split_dependencies(en_vocab):
|
2019-02-15 14:56:51 +03:00
|
|
|
doc = Doc(en_vocab, words=["LosAngeles", "start", "."])
|
2019-02-14 21:56:38 +03:00
|
|
|
dep1 = doc.vocab.strings.add("amod")
|
|
|
|
dep2 = doc.vocab.strings.add("subject")
|
2019-02-14 17:27:13 +03:00
|
|
|
with doc.retokenize() as retokenizer:
|
2019-02-17 14:22:07 +03:00
|
|
|
retokenizer.split(
|
|
|
|
doc[0],
|
|
|
|
["Los", "Angeles"],
|
|
|
|
[(doc[0], 1), doc[1]],
|
|
|
|
attrs={"dep": [dep1, dep2]},
|
|
|
|
)
|
2019-02-14 17:27:13 +03:00
|
|
|
assert doc[0].dep == dep1
|
|
|
|
assert doc[1].dep == dep2
|
|
|
|
|
|
|
|
|
2019-02-24 16:14:11 +03:00
|
|
|
def test_doc_retokenize_split_heads_error(en_vocab):
|
2019-02-15 14:56:51 +03:00
|
|
|
doc = Doc(en_vocab, words=["LosAngeles", "start", "."])
|
2019-02-14 21:56:38 +03:00
|
|
|
# Not enough heads
|
2019-02-14 17:27:13 +03:00
|
|
|
with pytest.raises(ValueError):
|
|
|
|
with doc.retokenize() as retokenizer:
|
2019-02-15 19:32:31 +03:00
|
|
|
retokenizer.split(doc[0], ["Los", "Angeles"], [doc[1]])
|
2019-02-14 17:27:13 +03:00
|
|
|
|
2019-02-14 21:56:38 +03:00
|
|
|
# Too many heads
|
2019-02-14 17:27:13 +03:00
|
|
|
with pytest.raises(ValueError):
|
|
|
|
with doc.retokenize() as retokenizer:
|
2019-02-15 19:32:31 +03:00
|
|
|
retokenizer.split(doc[0], ["Los", "Angeles"], [doc[1], doc[1], doc[1]])
|
2019-02-15 15:09:07 +03:00
|
|
|
|
|
|
|
|
2019-02-24 16:14:11 +03:00
|
|
|
def test_doc_retokenize_spans_entity_split_iob():
|
2019-02-14 17:27:13 +03:00
|
|
|
# Test entity IOB stays consistent after merging
|
|
|
|
words = ["abc", "d", "e"]
|
|
|
|
doc = Doc(Vocab(), words=words)
|
2019-02-14 21:56:38 +03:00
|
|
|
doc.ents = [(doc.vocab.strings.add("ent-abcd"), 0, 2)]
|
2019-02-14 17:27:13 +03:00
|
|
|
assert doc[0].ent_iob_ == "B"
|
|
|
|
assert doc[1].ent_iob_ == "I"
|
|
|
|
with doc.retokenize() as retokenizer:
|
2019-02-17 14:22:07 +03:00
|
|
|
retokenizer.split(doc[0], ["a", "b", "c"], [(doc[0], 1), (doc[0], 2), doc[1]])
|
2019-02-14 17:27:13 +03:00
|
|
|
assert doc[0].ent_iob_ == "B"
|
|
|
|
assert doc[1].ent_iob_ == "I"
|
|
|
|
assert doc[2].ent_iob_ == "I"
|
|
|
|
assert doc[3].ent_iob_ == "I"
|
|
|
|
|
2019-02-14 21:56:38 +03:00
|
|
|
|
2019-02-24 16:14:11 +03:00
|
|
|
def test_doc_retokenize_spans_sentence_update_after_split(en_vocab):
|
2019-02-14 21:56:38 +03:00
|
|
|
# fmt: off
|
2019-02-15 14:56:51 +03:00
|
|
|
words = ["StewartLee", "is", "a", "stand", "up", "comedian", ".", "He",
|
|
|
|
"lives", "in", "England", "and", "loves", "JoePasquale", "."]
|
2020-09-21 21:43:54 +03:00
|
|
|
heads = [1, 1, 3, 5, 3, 1, 1, 8, 8, 8, 9, 8, 8, 14, 12]
|
2019-02-14 21:56:38 +03:00
|
|
|
deps = ["nsubj", "ROOT", "det", "amod", "prt", "attr", "punct", "nsubj",
|
|
|
|
"ROOT", "prep", "pobj", "cc", "conj", "compound", "punct"]
|
|
|
|
# fmt: on
|
2020-09-21 21:43:54 +03:00
|
|
|
doc = Doc(en_vocab, words=words, heads=heads, deps=deps)
|
2019-02-14 17:27:13 +03:00
|
|
|
sent1, sent2 = list(doc.sents)
|
|
|
|
init_len = len(sent1)
|
|
|
|
init_len2 = len(sent2)
|
|
|
|
with doc.retokenize() as retokenizer:
|
2019-02-17 14:22:07 +03:00
|
|
|
retokenizer.split(
|
|
|
|
doc[0],
|
|
|
|
["Stewart", "Lee"],
|
|
|
|
[(doc[0], 1), doc[1]],
|
|
|
|
attrs={"dep": ["compound", "nsubj"]},
|
|
|
|
)
|
|
|
|
retokenizer.split(
|
|
|
|
doc[13],
|
|
|
|
["Joe", "Pasquale"],
|
|
|
|
[(doc[13], 1), doc[12]],
|
|
|
|
attrs={"dep": ["compound", "dobj"]},
|
|
|
|
)
|
2019-02-14 17:27:13 +03:00
|
|
|
sent1, sent2 = list(doc.sents)
|
|
|
|
assert len(sent1) == init_len + 1
|
|
|
|
assert len(sent2) == init_len2 + 1
|
2019-02-15 15:55:04 +03:00
|
|
|
|
|
|
|
|
2019-02-24 16:14:11 +03:00
|
|
|
def test_doc_retokenize_split_orths_mismatch(en_vocab):
|
2019-02-15 15:55:04 +03:00
|
|
|
"""Test that the regular retokenizer.split raises an error if the orths
|
|
|
|
don't match the original token text. There might still be a method that
|
|
|
|
allows this, but for the default use cases, merging and splitting should
|
|
|
|
always conform with spaCy's non-destructive tokenization policy. Otherwise,
|
|
|
|
it can lead to very confusing and unexpected results.
|
|
|
|
"""
|
|
|
|
doc = Doc(en_vocab, words=["LosAngeles", "start", "."])
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
with doc.retokenize() as retokenizer:
|
2019-02-15 19:32:31 +03:00
|
|
|
retokenizer.split(doc[0], ["L", "A"], [(doc[0], 0), (doc[0], 0)])
|
2019-02-24 20:38:47 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_doc_retokenize_split_extension_attrs(en_vocab):
|
|
|
|
Token.set_extension("a", default=False, force=True)
|
|
|
|
Token.set_extension("b", default="nothing", force=True)
|
|
|
|
doc = Doc(en_vocab, words=["LosAngeles", "start"])
|
|
|
|
with doc.retokenize() as retokenizer:
|
|
|
|
heads = [(doc[0], 1), doc[1]]
|
|
|
|
underscore = [{"a": True, "b": "1"}, {"b": "2"}]
|
|
|
|
attrs = {"lemma": ["los", "angeles"], "_": underscore}
|
|
|
|
retokenizer.split(doc[0], ["Los", "Angeles"], heads, attrs=attrs)
|
|
|
|
assert doc[0].lemma_ == "los"
|
2019-02-24 21:02:16 +03:00
|
|
|
assert doc[0]._.a is True
|
2019-02-24 20:38:47 +03:00
|
|
|
assert doc[0]._.b == "1"
|
|
|
|
assert doc[1].lemma_ == "angeles"
|
2019-02-24 21:02:16 +03:00
|
|
|
assert doc[1]._.a is False
|
2019-02-24 20:38:47 +03:00
|
|
|
assert doc[1]._.b == "2"
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"underscore_attrs",
|
|
|
|
[
|
|
|
|
[{"a": "x"}, {}], # Overwriting getter without setter
|
|
|
|
[{"b": "x"}, {}], # Overwriting method
|
|
|
|
[{"c": "x"}, {}], # Overwriting nonexistent attribute
|
|
|
|
[{"a": "x"}, {"x": "x"}], # Combination
|
|
|
|
[{"a": "x", "x": "x"}, {"x": "x"}], # Combination
|
|
|
|
{"x": "x"}, # Not a list of dicts
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_doc_retokenize_split_extension_attrs_invalid(en_vocab, underscore_attrs):
|
|
|
|
Token.set_extension("x", default=False, force=True)
|
|
|
|
Token.set_extension("a", getter=lambda x: x, force=True)
|
|
|
|
Token.set_extension("b", method=lambda x: x, force=True)
|
|
|
|
doc = Doc(en_vocab, words=["LosAngeles", "start"])
|
|
|
|
attrs = {"_": underscore_attrs}
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
with doc.retokenize() as retokenizer:
|
|
|
|
heads = [(doc[0], 1), doc[1]]
|
|
|
|
retokenizer.split(doc[0], ["Los", "Angeles"], heads, attrs=attrs)
|
2019-02-24 23:13:51 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_doc_retokenizer_split_lex_attrs(en_vocab):
|
|
|
|
"""Test that retokenization also sets attributes on the lexeme if they're
|
|
|
|
lexical attributes. For example, if a user sets IS_STOP, it should mean that
|
|
|
|
"all tokens with that lexeme" are marked as a stop word, so the ambiguity
|
|
|
|
here is acceptable. Also see #2390.
|
|
|
|
"""
|
|
|
|
assert not Doc(en_vocab, words=["Los"])[0].is_stop
|
|
|
|
assert not Doc(en_vocab, words=["Angeles"])[0].is_stop
|
|
|
|
doc = Doc(en_vocab, words=["LosAngeles", "start"])
|
|
|
|
assert not doc[0].is_stop
|
|
|
|
with doc.retokenize() as retokenizer:
|
|
|
|
attrs = {"is_stop": [True, False]}
|
|
|
|
heads = [(doc[0], 1), doc[1]]
|
|
|
|
retokenizer.split(doc[0], ["Los", "Angeles"], heads, attrs=attrs)
|
|
|
|
assert doc[0].is_stop
|
|
|
|
assert not doc[1].is_stop
|
2019-11-11 18:26:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_doc_retokenizer_realloc(en_vocab):
|
|
|
|
"""#4604: realloc correctly when new tokens outnumber original tokens"""
|
|
|
|
text = "Hyperglycemic adverse events following antipsychotic drug administration in the"
|
|
|
|
doc = Doc(en_vocab, words=text.split()[:-1])
|
|
|
|
with doc.retokenize() as retokenizer:
|
|
|
|
token = doc[0]
|
|
|
|
heads = [(token, 0)] * len(token)
|
|
|
|
retokenizer.split(doc[token.i], list(token.text), heads=heads)
|
|
|
|
doc = Doc(en_vocab, words=text.split())
|
|
|
|
with doc.retokenize() as retokenizer:
|
|
|
|
token = doc[0]
|
|
|
|
heads = [(token, 0)] * len(token)
|
|
|
|
retokenizer.split(doc[token.i], list(token.text), heads=heads)
|
2020-09-22 22:53:33 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_doc_retokenizer_split_norm(en_vocab):
|
|
|
|
"""#6060: reset norm in split"""
|
|
|
|
text = "The quick brownfoxjumpsoverthe lazy dog w/ white spots"
|
|
|
|
doc = Doc(en_vocab, words=text.split())
|
|
|
|
|
|
|
|
# Set custom norm on the w/ token.
|
|
|
|
doc[5].norm_ = "with"
|
|
|
|
|
|
|
|
# Retokenize to split out the words in the token at doc[2].
|
|
|
|
token = doc[2]
|
|
|
|
with doc.retokenize() as retokenizer:
|
2020-10-05 22:58:18 +03:00
|
|
|
retokenizer.split(
|
|
|
|
token,
|
|
|
|
["brown", "fox", "jumps", "over", "the"],
|
|
|
|
heads=[(token, idx) for idx in range(5)],
|
|
|
|
)
|
2020-09-22 22:53:33 +03:00
|
|
|
|
2020-10-05 22:58:18 +03:00
|
|
|
assert doc[9].text == "w/"
|
2020-09-22 22:53:33 +03:00
|
|
|
assert doc[9].norm_ == "with"
|
2020-10-05 22:58:18 +03:00
|
|
|
assert doc[5].text == "over"
|
2020-09-22 22:53:33 +03:00
|
|
|
assert doc[5].norm_ == "over"
|