2017-01-12 17:30:49 +03:00
|
|
|
# coding: utf-8
|
2015-04-07 05:52:25 +03:00
|
|
|
from __future__ import unicode_literals
|
2017-01-12 17:30:49 +03:00
|
|
|
|
2015-04-07 05:52:25 +03:00
|
|
|
import pytest
|
2018-07-25 00:38:44 +03:00
|
|
|
from spacy.attrs import ORTH, LENGTH
|
2018-12-08 15:08:41 +03:00
|
|
|
from spacy.tokens import Doc, Span
|
2018-07-25 00:38:44 +03:00
|
|
|
from spacy.vocab import Vocab
|
|
|
|
|
|
|
|
from ..util import get_doc
|
2015-04-07 05:52:25 +03:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2017-01-12 17:30:49 +03:00
|
|
|
def doc(en_tokenizer):
|
2018-11-27 03:09:36 +03:00
|
|
|
# fmt: off
|
2017-01-12 17:30:49 +03:00
|
|
|
text = "This is a sentence. This is another sentence. And a third."
|
|
|
|
heads = [1, 0, 1, -2, -3, 1, 0, 1, -2, -3, 0, 1, -2, -1]
|
2018-11-27 03:09:36 +03:00
|
|
|
deps = ["nsubj", "ROOT", "det", "attr", "punct", "nsubj", "ROOT", "det",
|
|
|
|
"attr", "punct", "ROOT", "det", "npadvmod", "punct"]
|
|
|
|
# fmt: on
|
2017-01-12 17:30:49 +03:00
|
|
|
tokens = en_tokenizer(text)
|
2018-07-25 00:38:44 +03:00
|
|
|
return get_doc(tokens.vocab, words=[t.text for t in tokens], heads=heads, deps=deps)
|
2015-04-07 05:52:25 +03:00
|
|
|
|
|
|
|
|
2018-03-27 20:23:02 +03:00
|
|
|
@pytest.fixture
|
|
|
|
def doc_not_parsed(en_tokenizer):
|
|
|
|
text = "This is a sentence. This is another sentence. And a third."
|
|
|
|
tokens = en_tokenizer(text)
|
2018-07-25 00:38:44 +03:00
|
|
|
doc = Doc(tokens.vocab, words=[t.text for t in tokens])
|
|
|
|
doc.is_parsed = False
|
|
|
|
return doc
|
2018-03-27 20:23:02 +03:00
|
|
|
|
|
|
|
|
2017-01-12 17:30:49 +03:00
|
|
|
def test_spans_sent_spans(doc):
|
2015-04-07 05:52:25 +03:00
|
|
|
sents = list(doc.sents)
|
|
|
|
assert sents[0].start == 0
|
|
|
|
assert sents[0].end == 5
|
|
|
|
assert len(sents) == 3
|
|
|
|
assert sum(len(sent) for sent in sents) == len(doc)
|
2015-07-09 18:30:58 +03:00
|
|
|
|
|
|
|
|
2017-01-12 17:30:49 +03:00
|
|
|
def test_spans_root(doc):
|
|
|
|
span = doc[2:4]
|
|
|
|
assert len(span) == 2
|
2018-11-27 03:09:36 +03:00
|
|
|
assert span.text == "a sentence"
|
|
|
|
assert span.root.text == "sentence"
|
|
|
|
assert span.root.head.text == "is"
|
2016-01-16 18:19:09 +03:00
|
|
|
|
2018-03-27 20:23:02 +03:00
|
|
|
|
2017-03-11 03:50:02 +03:00
|
|
|
def test_spans_string_fn(doc):
|
|
|
|
span = doc[0:4]
|
|
|
|
assert len(span) == 4
|
2018-11-27 03:09:36 +03:00
|
|
|
assert span.text == "This is a sentence"
|
|
|
|
assert span.upper_ == "THIS IS A SENTENCE"
|
|
|
|
assert span.lower_ == "this is a sentence"
|
2016-01-16 18:19:09 +03:00
|
|
|
|
2018-03-27 20:23:02 +03:00
|
|
|
|
2017-01-12 17:30:49 +03:00
|
|
|
def test_spans_root2(en_tokenizer):
|
|
|
|
text = "through North and South Carolina"
|
|
|
|
heads = [0, 3, -1, -2, -4]
|
|
|
|
tokens = en_tokenizer(text)
|
2018-07-25 00:38:44 +03:00
|
|
|
doc = get_doc(tokens.vocab, words=[t.text for t in tokens], heads=heads)
|
2018-11-27 03:09:36 +03:00
|
|
|
assert doc[-2:].root.text == "Carolina"
|
2016-05-06 01:17:38 +03:00
|
|
|
|
|
|
|
|
2018-03-27 20:23:02 +03:00
|
|
|
def test_spans_span_sent(doc, doc_not_parsed):
|
2017-01-12 17:30:49 +03:00
|
|
|
"""Test span.sent property"""
|
2016-05-06 01:17:38 +03:00
|
|
|
assert len(list(doc.sents))
|
2018-11-27 03:09:36 +03:00
|
|
|
assert doc[:2].sent.root.text == "is"
|
|
|
|
assert doc[:2].sent.text == "This is a sentence ."
|
|
|
|
assert doc[6:7].sent.root.left_edge.text == "This"
|
2018-03-27 20:23:02 +03:00
|
|
|
# test on manual sbd
|
|
|
|
doc_not_parsed[0].is_sent_start = True
|
|
|
|
doc_not_parsed[5].is_sent_start = True
|
|
|
|
assert doc_not_parsed[1:3].sent == doc_not_parsed[0:5]
|
|
|
|
assert doc_not_parsed[10:14].sent == doc_not_parsed[5:]
|
2017-01-12 17:30:49 +03:00
|
|
|
|
|
|
|
|
2017-10-20 21:28:00 +03:00
|
|
|
def test_spans_lca_matrix(en_tokenizer):
|
|
|
|
"""Test span's lca matrix generation"""
|
2018-11-27 03:09:36 +03:00
|
|
|
tokens = en_tokenizer("the lazy dog slept")
|
2018-07-25 00:38:44 +03:00
|
|
|
doc = get_doc(tokens.vocab, words=[t.text for t in tokens], heads=[2, 1, 1, 0])
|
2017-10-20 21:28:00 +03:00
|
|
|
lca = doc[:2].get_lca_matrix()
|
2018-11-27 03:09:36 +03:00
|
|
|
assert lca[0, 0] == 0
|
|
|
|
assert lca[0, 1] == -1
|
|
|
|
assert lca[1, 0] == -1
|
|
|
|
assert lca[1, 1] == 1
|
2017-10-20 21:28:00 +03:00
|
|
|
|
|
|
|
|
2018-01-15 18:29:48 +03:00
|
|
|
def test_span_similarity_match():
|
2018-11-27 03:09:36 +03:00
|
|
|
doc = Doc(Vocab(), words=["a", "b", "a", "b"])
|
2018-01-15 18:29:48 +03:00
|
|
|
span1 = doc[:2]
|
|
|
|
span2 = doc[2:]
|
2018-05-21 02:22:38 +03:00
|
|
|
with pytest.warns(None):
|
|
|
|
assert span1.similarity(span2) == 1.0
|
|
|
|
assert span1.similarity(doc) == 0.0
|
2018-11-27 03:09:36 +03:00
|
|
|
assert span1[:1].similarity(doc.vocab["a"]) == 1.0
|
2018-01-15 18:29:48 +03:00
|
|
|
|
|
|
|
|
2017-01-12 17:30:49 +03:00
|
|
|
def test_spans_default_sentiment(en_tokenizer):
|
|
|
|
"""Test span.sentiment property's default averaging behaviour"""
|
|
|
|
text = "good stuff bad stuff"
|
|
|
|
tokens = en_tokenizer(text)
|
|
|
|
tokens.vocab[tokens[0].text].sentiment = 3.0
|
|
|
|
tokens.vocab[tokens[2].text].sentiment = -2.0
|
2018-07-25 00:38:44 +03:00
|
|
|
doc = Doc(tokens.vocab, words=[t.text for t in tokens])
|
2017-01-12 17:30:49 +03:00
|
|
|
assert doc[:2].sentiment == 3.0 / 2
|
2018-11-27 03:09:36 +03:00
|
|
|
assert doc[-2:].sentiment == -2.0 / 2
|
|
|
|
assert doc[:-1].sentiment == (3.0 + -2) / 3.0
|
2017-01-12 17:30:49 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_spans_override_sentiment(en_tokenizer):
|
|
|
|
"""Test span.sentiment property's default averaging behaviour"""
|
|
|
|
text = "good stuff bad stuff"
|
|
|
|
tokens = en_tokenizer(text)
|
|
|
|
tokens.vocab[tokens[0].text].sentiment = 3.0
|
|
|
|
tokens.vocab[tokens[2].text].sentiment = -2.0
|
2018-07-25 00:38:44 +03:00
|
|
|
doc = Doc(tokens.vocab, words=[t.text for t in tokens])
|
2018-11-27 03:09:36 +03:00
|
|
|
doc.user_span_hooks["sentiment"] = lambda span: 10.0
|
2017-01-12 17:30:49 +03:00
|
|
|
assert doc[:2].sentiment == 10.0
|
|
|
|
assert doc[-2:].sentiment == 10.0
|
|
|
|
assert doc[:-1].sentiment == 10.0
|
2017-04-26 20:01:05 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_spans_are_hashable(en_tokenizer):
|
|
|
|
"""Test spans can be hashed."""
|
|
|
|
text = "good stuff bad stuff"
|
|
|
|
tokens = en_tokenizer(text)
|
|
|
|
span1 = tokens[:2]
|
|
|
|
span2 = tokens[2:4]
|
|
|
|
assert hash(span1) != hash(span2)
|
|
|
|
span3 = tokens[0:2]
|
|
|
|
assert hash(span3) == hash(span1)
|
2017-10-24 16:27:29 +03:00
|
|
|
|
2017-08-19 17:18:23 +03:00
|
|
|
|
|
|
|
def test_spans_by_character(doc):
|
|
|
|
span1 = doc[1:-2]
|
2018-11-27 03:09:36 +03:00
|
|
|
span2 = doc.char_span(span1.start_char, span1.end_char, label="GPE")
|
2017-08-19 17:18:23 +03:00
|
|
|
assert span1.start_char == span2.start_char
|
|
|
|
assert span1.end_char == span2.end_char
|
2018-11-27 03:09:36 +03:00
|
|
|
assert span2.label_ == "GPE"
|
2017-08-19 17:24:38 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_span_to_array(doc):
|
|
|
|
span = doc[1:-2]
|
|
|
|
arr = span.to_array([ORTH, LENGTH])
|
|
|
|
assert arr.shape == (len(span), 2)
|
|
|
|
assert arr[0, 0] == span[0].orth
|
|
|
|
assert arr[0, 1] == len(span[0])
|
|
|
|
|
2017-10-24 16:28:05 +03:00
|
|
|
|
2018-07-25 00:38:44 +03:00
|
|
|
def test_span_as_doc(doc):
|
|
|
|
span = doc[4:10]
|
|
|
|
span_doc = span.as_doc()
|
|
|
|
assert span.text == span_doc.text.strip()
|
2018-12-30 17:17:46 +03:00
|
|
|
assert isinstance(span_doc, doc.__class__)
|
|
|
|
assert span_doc is not doc
|
|
|
|
assert span_doc[0].idx == 0
|
2018-08-07 14:52:32 +03:00
|
|
|
|
2018-11-27 03:09:36 +03:00
|
|
|
|
2018-12-08 15:08:41 +03:00
|
|
|
def test_span_string_label(doc):
|
|
|
|
span = Span(doc, 0, 1, label='hello')
|
|
|
|
assert span.label_ == 'hello'
|
|
|
|
assert span.label == doc.vocab.strings['hello']
|
|
|
|
|
|
|
|
def test_span_string_set_label(doc):
|
|
|
|
span = Span(doc, 0, 1)
|
|
|
|
span.label_ = 'hello'
|
|
|
|
assert span.label_ == 'hello'
|
|
|
|
assert span.label == doc.vocab.strings['hello']
|
|
|
|
|
2018-08-07 14:52:32 +03:00
|
|
|
def test_span_ents_property(doc):
|
|
|
|
"""Test span.ents for the """
|
|
|
|
doc.ents = [
|
2018-11-27 03:09:36 +03:00
|
|
|
(doc.vocab.strings["PRODUCT"], 0, 1),
|
|
|
|
(doc.vocab.strings["PRODUCT"], 7, 8),
|
|
|
|
(doc.vocab.strings["PRODUCT"], 11, 14),
|
2018-08-07 14:52:32 +03:00
|
|
|
]
|
|
|
|
assert len(list(doc.ents)) == 3
|
|
|
|
sentences = list(doc.sents)
|
|
|
|
assert len(sentences) == 3
|
|
|
|
assert len(sentences[0].ents) == 1
|
|
|
|
# First sentence, also tests start of sentence
|
|
|
|
assert sentences[0].ents[0].text == "This"
|
|
|
|
assert sentences[0].ents[0].label_ == "PRODUCT"
|
|
|
|
assert sentences[0].ents[0].start == 0
|
|
|
|
assert sentences[0].ents[0].end == 1
|
|
|
|
# Second sentence
|
|
|
|
assert len(sentences[1].ents) == 1
|
|
|
|
assert sentences[1].ents[0].text == "another"
|
|
|
|
assert sentences[1].ents[0].label_ == "PRODUCT"
|
|
|
|
assert sentences[1].ents[0].start == 7
|
|
|
|
assert sentences[1].ents[0].end == 8
|
|
|
|
# Third sentence ents, Also tests end of sentence
|
|
|
|
assert sentences[2].ents[0].text == "a third ."
|
|
|
|
assert sentences[2].ents[0].label_ == "PRODUCT"
|
|
|
|
assert sentences[2].ents[0].start == 11
|
|
|
|
assert sentences[2].ents[0].end == 14
|