-
Notifications
You must be signed in to change notification settings - Fork 228
/
test_hyponym_detector.py
50 lines (40 loc) · 1.82 KB
/
test_hyponym_detector.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# pylint: disable=no-self-use,invalid-name
import unittest
import spacy
from scispacy.hyponym_detector import HyponymDetector
class TestHyponymDetector(unittest.TestCase):
def setUp(self):
super().setUp()
self.nlp = spacy.load("en_core_sci_sm")
self.detector = HyponymDetector(self.nlp, extended=True)
self.nlp.add_pipe("hyponym_detector", config={"extended": True}, last=True)
def test_sentences(self):
text = (
"Recognizing that the preferred habitats for the species "
"are in the valleys, systematic planting of keystone plant "
"species such as fig trees (Ficus) creates the best microhabitats."
)
doc = self.nlp(text)
fig_trees = doc[21:23]
plant_species = doc[16:19]
assert doc._.hearst_patterns == [("such_as", plant_species, fig_trees)]
doc = self.nlp("SARS, or other coronaviruses, are bad.")
assert doc._.hearst_patterns == [("other", doc[4:5], doc[0:1])]
doc = self.nlp("Coronaviruses, including SARS and MERS, are bad.")
assert doc._.hearst_patterns == [
("include", doc[0:1], doc[3:4]),
("include", doc[0:1], doc[5:6]),
]
def test_find_noun_compound_head(self):
doc = self.nlp("The potassium channel is good.")
head = self.detector.find_noun_compound_head(doc[1])
assert head == doc[2]
doc = self.nlp("Planting of large plants.")
head = self.detector.find_noun_compound_head(doc[3])
# Planting is a noun, but not a compound with 'plants'.
assert head != doc[0]
assert head == doc[3]
def test_expand_noun_phrase(self):
doc = self.nlp("Keystone plant habitats are good.")
chunk = self.detector.expand_to_noun_compound(doc[1], doc)
assert chunk == doc[0:3]