2017-01-12 04:16:37 +03:00
|
|
|
# coding: utf-8
|
2016-05-03 15:24:35 +03:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2017-05-29 23:14:31 +03:00
|
|
|
from ...util import get_doc
|
2017-01-13 04:01:00 +03:00
|
|
|
|
|
|
|
|
2018-07-25 00:38:44 +03:00
|
|
|
def test_en_parser_noun_chunks_standard(en_tokenizer):
|
2017-01-13 04:01:00 +03:00
|
|
|
text = "A base phrase should be recognized."
|
|
|
|
heads = [2, 1, 3, 2, 1, 0, -1]
|
2018-11-27 03:09:36 +03:00
|
|
|
tags = ["DT", "JJ", "NN", "MD", "VB", "VBN", "."]
|
|
|
|
deps = ["det", "amod", "nsubjpass", "aux", "auxpass", "ROOT", "punct"]
|
2017-01-13 04:01:00 +03:00
|
|
|
tokens = en_tokenizer(text)
|
2018-11-27 03:09:36 +03:00
|
|
|
doc = get_doc(
|
|
|
|
tokens.vocab, words=[t.text for t in tokens], tags=tags, deps=deps, heads=heads
|
|
|
|
)
|
2017-01-13 04:01:00 +03:00
|
|
|
chunks = list(doc.noun_chunks)
|
|
|
|
assert len(chunks) == 1
|
|
|
|
assert chunks[0].text_with_ws == "A base phrase "
|
|
|
|
|
|
|
|
|
2018-07-25 00:38:44 +03:00
|
|
|
def test_en_parser_noun_chunks_coordinated(en_tokenizer):
|
2018-11-27 03:09:36 +03:00
|
|
|
# fmt: off
|
2017-01-13 04:01:00 +03:00
|
|
|
text = "A base phrase and a good phrase are often the same."
|
|
|
|
heads = [2, 1, 5, -1, 2, 1, -4, 0, -1, 1, -3, -4]
|
2018-11-27 03:09:36 +03:00
|
|
|
tags = ["DT", "NN", "NN", "CC", "DT", "JJ", "NN", "VBP", "RB", "DT", "JJ", "."]
|
|
|
|
deps = ["det", "compound", "nsubj", "cc", "det", "amod", "conj", "ROOT", "advmod", "det", "attr", "punct"]
|
|
|
|
# fmt: on
|
2017-01-13 04:01:00 +03:00
|
|
|
tokens = en_tokenizer(text)
|
2018-11-27 03:09:36 +03:00
|
|
|
doc = get_doc(
|
|
|
|
tokens.vocab, words=[t.text for t in tokens], tags=tags, deps=deps, heads=heads
|
|
|
|
)
|
2017-01-13 04:01:00 +03:00
|
|
|
chunks = list(doc.noun_chunks)
|
|
|
|
assert len(chunks) == 2
|
|
|
|
assert chunks[0].text_with_ws == "A base phrase "
|
|
|
|
assert chunks[1].text_with_ws == "a good phrase "
|
|
|
|
|
|
|
|
|
2018-07-25 00:38:44 +03:00
|
|
|
def test_en_parser_noun_chunks_pp_chunks(en_tokenizer):
|
2017-01-13 04:01:00 +03:00
|
|
|
text = "A phrase with another phrase occurs."
|
|
|
|
heads = [1, 4, -1, 1, -2, 0, -1]
|
2018-11-27 03:09:36 +03:00
|
|
|
tags = ["DT", "NN", "IN", "DT", "NN", "VBZ", "."]
|
|
|
|
deps = ["det", "nsubj", "prep", "det", "pobj", "ROOT", "punct"]
|
2017-01-13 04:01:00 +03:00
|
|
|
tokens = en_tokenizer(text)
|
2018-11-27 03:09:36 +03:00
|
|
|
doc = get_doc(
|
|
|
|
tokens.vocab, words=[t.text for t in tokens], tags=tags, deps=deps, heads=heads
|
|
|
|
)
|
2017-01-13 04:01:00 +03:00
|
|
|
chunks = list(doc.noun_chunks)
|
|
|
|
assert len(chunks) == 2
|
|
|
|
assert chunks[0].text_with_ws == "A phrase "
|
|
|
|
assert chunks[1].text_with_ws == "another phrase "
|
2017-10-14 14:16:21 +03:00
|
|
|
|
|
|
|
|
2018-07-25 00:38:44 +03:00
|
|
|
def test_en_parser_noun_chunks_appositional_modifiers(en_tokenizer):
|
2018-11-27 03:09:36 +03:00
|
|
|
# fmt: off
|
2017-10-14 14:16:21 +03:00
|
|
|
text = "Sam, my brother, arrived to the house."
|
|
|
|
heads = [5, -1, 1, -3, -4, 0, -1, 1, -2, -4]
|
2018-11-27 03:09:36 +03:00
|
|
|
tags = ["NNP", ",", "PRP$", "NN", ",", "VBD", "IN", "DT", "NN", "."]
|
|
|
|
deps = ["nsubj", "punct", "poss", "appos", "punct", "ROOT", "prep", "det", "pobj", "punct"]
|
|
|
|
# fmt: on
|
2017-10-14 14:16:21 +03:00
|
|
|
tokens = en_tokenizer(text)
|
2018-11-27 03:09:36 +03:00
|
|
|
doc = get_doc(
|
|
|
|
tokens.vocab, words=[t.text for t in tokens], tags=tags, deps=deps, heads=heads
|
|
|
|
)
|
2017-10-14 14:16:21 +03:00
|
|
|
chunks = list(doc.noun_chunks)
|
|
|
|
assert len(chunks) == 3
|
|
|
|
assert chunks[0].text_with_ws == "Sam "
|
|
|
|
assert chunks[1].text_with_ws == "my brother "
|
|
|
|
assert chunks[2].text_with_ws == "the house "
|
|
|
|
|
|
|
|
|
2018-07-25 00:38:44 +03:00
|
|
|
def test_en_parser_noun_chunks_dative(en_tokenizer):
|
2017-10-14 14:16:21 +03:00
|
|
|
text = "She gave Bob a raise."
|
|
|
|
heads = [1, 0, -1, 1, -3, -4]
|
2018-11-27 03:09:36 +03:00
|
|
|
tags = ["PRP", "VBD", "NNP", "DT", "NN", "."]
|
|
|
|
deps = ["nsubj", "ROOT", "dative", "det", "dobj", "punct"]
|
2017-10-14 14:16:21 +03:00
|
|
|
tokens = en_tokenizer(text)
|
2018-11-27 03:09:36 +03:00
|
|
|
doc = get_doc(
|
|
|
|
tokens.vocab, words=[t.text for t in tokens], tags=tags, deps=deps, heads=heads
|
|
|
|
)
|
2017-10-14 14:16:21 +03:00
|
|
|
chunks = list(doc.noun_chunks)
|
|
|
|
assert len(chunks) == 3
|
|
|
|
assert chunks[0].text_with_ws == "She "
|
|
|
|
assert chunks[1].text_with_ws == "Bob "
|
|
|
|
assert chunks[2].text_with_ws == "a raise "
|