2017-01-11 20:54:56 +03:00
|
|
|
import numpy
|
2018-07-25 00:38:44 +03:00
|
|
|
from spacy.attrs import HEAD, DEP
|
|
|
|
from spacy.symbols import nsubj, dobj, amod, nmod, conj, cc, root
|
|
|
|
from spacy.lang.en.syntax_iterators import SYNTAX_ITERATORS
|
|
|
|
|
2020-05-14 13:58:06 +03:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
2018-07-25 00:38:44 +03:00
|
|
|
from ...util import get_doc
|
2017-01-11 20:54:56 +03:00
|
|
|
|
|
|
|
|
2020-05-14 13:58:06 +03:00
|
|
|
def test_noun_chunks_is_parsed(en_tokenizer):
|
2020-05-21 15:14:01 +03:00
|
|
|
"""Test that noun_chunks raises Value Error for 'en' language if Doc is not parsed.
|
2020-05-14 13:58:06 +03:00
|
|
|
To check this test, we're constructing a Doc
|
2020-05-21 15:14:01 +03:00
|
|
|
with a new Vocab here and forcing is_parsed to 'False'
|
2020-05-14 13:58:06 +03:00
|
|
|
to make sure the noun chunks don't run.
|
|
|
|
"""
|
|
|
|
doc = en_tokenizer("This is a sentence")
|
|
|
|
doc.is_parsed = False
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
list(doc.noun_chunks)
|
|
|
|
|
|
|
|
|
2018-11-30 19:43:08 +03:00
|
|
|
def test_en_noun_chunks_not_nested(en_vocab):
|
|
|
|
words = ["Peter", "has", "chronic", "command", "and", "control", "issues"]
|
2017-01-11 20:54:56 +03:00
|
|
|
heads = [1, 0, 4, 3, -1, -2, -5]
|
2018-11-27 03:09:36 +03:00
|
|
|
deps = ["nsubj", "ROOT", "amod", "nmod", "cc", "conj", "dobj"]
|
2018-11-30 19:43:08 +03:00
|
|
|
doc = get_doc(en_vocab, words=words, heads=heads, deps=deps)
|
|
|
|
doc.from_array(
|
2016-01-16 19:41:25 +03:00
|
|
|
[HEAD, DEP],
|
2018-11-27 03:09:36 +03:00
|
|
|
numpy.asarray(
|
|
|
|
[
|
|
|
|
[1, nsubj],
|
|
|
|
[0, root],
|
|
|
|
[4, amod],
|
|
|
|
[3, nmod],
|
|
|
|
[-1, cc],
|
|
|
|
[-2, conj],
|
|
|
|
[-5, dobj],
|
|
|
|
],
|
|
|
|
dtype="uint64",
|
|
|
|
),
|
|
|
|
)
|
2018-11-30 19:43:08 +03:00
|
|
|
doc.noun_chunks_iterator = SYNTAX_ITERATORS["noun_chunks"]
|
2016-01-16 19:41:25 +03:00
|
|
|
word_occurred = {}
|
2018-11-30 19:43:08 +03:00
|
|
|
for chunk in doc.noun_chunks:
|
2016-01-16 19:41:25 +03:00
|
|
|
for word in chunk:
|
|
|
|
word_occurred.setdefault(word.text, 0)
|
|
|
|
word_occurred[word.text] += 1
|
|
|
|
for word, freq in word_occurred.items():
|
2018-11-30 19:43:08 +03:00
|
|
|
assert freq == 1, (word, [chunk.text for chunk in doc.noun_chunks])
|