2016-02-22 16:40:40 +03:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
import pytest
|
|
|
|
|
2016-03-01 12:09:08 +03:00
|
|
|
from spacy.attrs import DEP, HEAD
|
|
|
|
import numpy
|
|
|
|
|
|
|
|
from spacy.syntax.nonproj import ancestors, contains_cycle, is_nonproj_arc, is_nonproj_tree, PseudoProjectivity
|
2016-02-22 16:40:40 +03:00
|
|
|
|
|
|
|
def test_ancestors():
|
|
|
|
tree = [1,2,2,4,5,2,2]
|
|
|
|
cyclic_tree = [1,2,2,4,5,3,2]
|
|
|
|
partial_tree = [1,2,2,4,5,None,2]
|
2016-02-24 13:26:25 +03:00
|
|
|
multirooted_tree = [3,2,0,3,3,7,7,3,7,10,7,10,11,12,18,16,18,17,12,3]
|
2016-02-22 16:40:40 +03:00
|
|
|
assert([ a for a in ancestors(3,tree) ] == [4,5,2])
|
|
|
|
assert([ a for a in ancestors(3,cyclic_tree) ] == [4,5,3,4,5,3,4])
|
|
|
|
assert([ a for a in ancestors(3,partial_tree) ] == [4,5,None])
|
2016-02-24 13:26:25 +03:00
|
|
|
assert([ a for a in ancestors(17,multirooted_tree) ] == [])
|
2016-02-22 16:40:40 +03:00
|
|
|
|
|
|
|
def test_contains_cycle():
|
|
|
|
tree = [1,2,2,4,5,2,2]
|
|
|
|
cyclic_tree = [1,2,2,4,5,3,2]
|
|
|
|
partial_tree = [1,2,2,4,5,None,2]
|
2016-02-24 13:26:25 +03:00
|
|
|
multirooted_tree = [3,2,0,3,3,7,7,3,7,10,7,10,11,12,18,16,18,17,12,3]
|
2016-02-22 16:40:40 +03:00
|
|
|
assert(contains_cycle(tree) == None)
|
|
|
|
assert(contains_cycle(cyclic_tree) == set([3,4,5]))
|
|
|
|
assert(contains_cycle(partial_tree) == None)
|
2016-02-24 13:26:25 +03:00
|
|
|
assert(contains_cycle(multirooted_tree) == None)
|
2016-02-22 16:40:40 +03:00
|
|
|
|
2016-02-24 13:26:25 +03:00
|
|
|
def test_is_nonproj_arc():
|
2016-02-22 16:40:40 +03:00
|
|
|
nonproj_tree = [1,2,2,4,5,2,7,4,2]
|
|
|
|
partial_tree = [1,2,2,4,5,None,7,4,2]
|
2016-02-24 13:26:25 +03:00
|
|
|
multirooted_tree = [3,2,0,3,3,7,7,3,7,10,7,10,11,12,18,16,18,17,12,3]
|
|
|
|
assert(is_nonproj_arc(0,nonproj_tree) == False)
|
|
|
|
assert(is_nonproj_arc(1,nonproj_tree) == False)
|
|
|
|
assert(is_nonproj_arc(2,nonproj_tree) == False)
|
|
|
|
assert(is_nonproj_arc(3,nonproj_tree) == False)
|
|
|
|
assert(is_nonproj_arc(4,nonproj_tree) == False)
|
|
|
|
assert(is_nonproj_arc(5,nonproj_tree) == False)
|
|
|
|
assert(is_nonproj_arc(6,nonproj_tree) == False)
|
|
|
|
assert(is_nonproj_arc(7,nonproj_tree) == True)
|
|
|
|
assert(is_nonproj_arc(8,nonproj_tree) == False)
|
|
|
|
assert(is_nonproj_arc(7,partial_tree) == False)
|
|
|
|
assert(is_nonproj_arc(17,multirooted_tree) == False)
|
|
|
|
assert(is_nonproj_arc(16,multirooted_tree) == True)
|
2016-02-22 16:40:40 +03:00
|
|
|
|
2016-02-24 13:26:25 +03:00
|
|
|
def test_is_nonproj_tree():
|
2016-02-22 16:40:40 +03:00
|
|
|
proj_tree = [1,2,2,4,5,2,7,5,2]
|
|
|
|
nonproj_tree = [1,2,2,4,5,2,7,4,2]
|
|
|
|
partial_tree = [1,2,2,4,5,None,7,4,2]
|
2016-02-24 13:26:25 +03:00
|
|
|
multirooted_tree = [3,2,0,3,3,7,7,3,7,10,7,10,11,12,18,16,18,17,12,3]
|
|
|
|
assert(is_nonproj_tree(proj_tree) == False)
|
|
|
|
assert(is_nonproj_tree(nonproj_tree) == True)
|
|
|
|
assert(is_nonproj_tree(partial_tree) == False)
|
|
|
|
assert(is_nonproj_tree(multirooted_tree) == True)
|
|
|
|
|
2016-03-03 17:21:00 +03:00
|
|
|
|
|
|
|
def deprojectivize(proj_heads, deco_labels, EN):
|
|
|
|
slen = len(proj_heads)
|
|
|
|
sent = EN.tokenizer.tokens_from_list(['whatever'] * slen)
|
|
|
|
rel_proj_heads = [ head-i for i,head in enumerate(proj_heads) ]
|
|
|
|
labelids = [ EN.vocab.strings[label] for label in deco_labels ]
|
2016-03-03 21:51:01 +03:00
|
|
|
pairs = list(zip(rel_proj_heads,labelids))
|
2016-03-03 21:42:09 +03:00
|
|
|
parse = numpy.asarray(pairs, dtype=numpy.int32)
|
2016-03-03 17:21:00 +03:00
|
|
|
sent.from_array([HEAD,DEP],parse)
|
|
|
|
PseudoProjectivity.deprojectivize(sent)
|
|
|
|
parse = sent.to_array([HEAD,DEP])
|
|
|
|
deproj_heads = [ i+head for i,head in enumerate(parse[:,0]) ]
|
|
|
|
undeco_labels = [ EN.vocab.strings[int(labelid)] for labelid in parse[:,1] ]
|
|
|
|
return deproj_heads, undeco_labels
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.models
|
|
|
|
def test_pseudoprojectivity(EN):
|
2016-02-24 13:26:25 +03:00
|
|
|
tree = [1,2,2]
|
|
|
|
nonproj_tree = [1,2,2,4,5,2,7,4,2]
|
2016-03-03 17:21:00 +03:00
|
|
|
labels = ['det','nsubj','root','det','dobj','aux','nsubj','acl','punct']
|
2016-02-24 13:26:25 +03:00
|
|
|
nonproj_tree2 = [9,1,3,1,5,6,9,8,6,1,6,12,13,10,1]
|
2016-03-03 17:21:00 +03:00
|
|
|
labels2 = ['advmod','root','det','nsubj','advmod','det','dobj','det','nmod','aux','nmod','advmod','det','amod','punct']
|
2016-02-24 13:26:25 +03:00
|
|
|
|
2016-03-01 12:09:08 +03:00
|
|
|
assert(PseudoProjectivity.decompose('X||Y') == ('X','Y'))
|
|
|
|
assert(PseudoProjectivity.decompose('X') == ('X',''))
|
2016-02-24 13:26:25 +03:00
|
|
|
|
2016-03-01 12:09:08 +03:00
|
|
|
assert(PseudoProjectivity.is_decorated('X||Y') == True)
|
|
|
|
assert(PseudoProjectivity.is_decorated('X') == False)
|
2016-02-24 13:26:25 +03:00
|
|
|
|
2016-03-01 12:09:08 +03:00
|
|
|
PseudoProjectivity._lift(0,tree)
|
2016-02-24 13:26:25 +03:00
|
|
|
assert(tree == [2,2,2])
|
|
|
|
|
2016-03-01 12:09:08 +03:00
|
|
|
np_arc = PseudoProjectivity._get_smallest_nonproj_arc(nonproj_tree)
|
2016-02-24 13:26:25 +03:00
|
|
|
assert(np_arc == 7)
|
|
|
|
|
2016-03-01 12:09:08 +03:00
|
|
|
np_arc = PseudoProjectivity._get_smallest_nonproj_arc(nonproj_tree2)
|
2016-02-24 13:26:25 +03:00
|
|
|
assert(np_arc == 10)
|
|
|
|
|
2016-03-01 12:09:08 +03:00
|
|
|
proj_heads, deco_labels = PseudoProjectivity.projectivize(nonproj_tree,labels)
|
2016-02-24 13:26:25 +03:00
|
|
|
assert(proj_heads == [1,2,2,4,5,2,7,5,2])
|
2016-03-03 17:21:00 +03:00
|
|
|
assert(deco_labels == ['det','nsubj','root','det','dobj','aux','nsubj','acl||dobj','punct'])
|
|
|
|
deproj_heads, undeco_labels = deprojectivize(proj_heads,deco_labels,EN)
|
|
|
|
assert(deproj_heads == nonproj_tree)
|
|
|
|
assert(undeco_labels == labels)
|
2016-02-24 13:26:25 +03:00
|
|
|
|
2016-03-01 12:09:08 +03:00
|
|
|
proj_heads, deco_labels = PseudoProjectivity.projectivize(nonproj_tree2,labels2)
|
2016-02-24 13:26:25 +03:00
|
|
|
assert(proj_heads == [1,1,3,1,5,6,9,8,6,1,9,12,13,10,1])
|
2016-03-03 17:21:00 +03:00
|
|
|
assert(deco_labels == ['advmod||aux','root','det','nsubj','advmod','det','dobj','det','nmod','aux','nmod||dobj','advmod','det','amod','punct'])
|
|
|
|
deproj_heads, undeco_labels = deprojectivize(proj_heads,deco_labels,EN)
|
|
|
|
assert(deproj_heads == nonproj_tree2)
|
|
|
|
assert(undeco_labels == labels2)
|
2016-02-24 13:26:25 +03:00
|
|
|
|
|
|
|
# if decoration is wrong such that there is no head with the desired label
|
|
|
|
# the structure is kept and the label is undecorated
|
2016-03-03 17:21:00 +03:00
|
|
|
proj_heads = [1,2,2,4,5,2,7,5,2]
|
|
|
|
deco_labels = ['det','nsubj','root','det','dobj','aux','nsubj','acl||iobj','punct']
|
|
|
|
deproj_heads, undeco_labels = deprojectivize(proj_heads,deco_labels,EN)
|
|
|
|
assert(deproj_heads == proj_heads)
|
|
|
|
assert(undeco_labels == ['det','nsubj','root','det','dobj','aux','nsubj','acl','punct'])
|
2016-02-24 13:26:25 +03:00
|
|
|
|
|
|
|
# if there are two potential new heads, the first one is chosen even if it's wrong
|
2016-03-03 17:21:00 +03:00
|
|
|
proj_heads = [1,1,3,1,5,6,9,8,6,1,9,12,13,10,1]
|
|
|
|
deco_labels = ['advmod||aux','root','det','aux','advmod','det','dobj','det','nmod','aux','nmod||dobj','advmod','det','amod','punct']
|
|
|
|
deproj_heads, undeco_labels = deprojectivize(proj_heads,deco_labels,EN)
|
|
|
|
assert(deproj_heads == [3,1,3,1,5,6,9,8,6,1,6,12,13,10,1])
|
|
|
|
assert(undeco_labels == ['advmod','root','det','aux','advmod','det','dobj','det','nmod','aux','nmod','advmod','det','amod','punct'])
|
2016-02-24 13:26:25 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|