This repository has been archived by the owner on Jun 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcuratorRun.py
185 lines (141 loc) · 5.9 KB
/
curatorRun.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
from thrift import Thrift
from thrift.transport import TSocket
from thrift.transport import TTransport
from thrift.protocol import TBinaryProtocol
from cogcomp.curator import Curator
from cogcomp.base.ttypes import ServiceUnavailableException
from nltk.corpus import propbank
class TransportOpened():
def __init__(self, trans):
self.trans = trans
def __enter__(self):
if not self.trans.isOpen():
self.trans.open()
return self.trans
def __exit__(self, exctype, excinst, exctb):
if self.trans.isOpen():
self.trans.close()
def getPredicates(head):
span = head.span
if span.attributes is not None and len(span.attributes) > 0:
predicate = span.attributes.get("predicate")
sense = span.attributes.get("sense")
return predicate, sense
def displayParseView(view, text):
trees = view.trees
for tree in trees:
stack = [tree.top]
res = ""
while len(stack) > 0:
headIndex = stack.pop(-1)
head = tree.nodes[headIndex]
if head.children is not None and len(head.children) > 0:
print(getPredicates(head))
for childIndex in head.children:
stack.append(childIndex)
child = tree.nodes[childIndex]
relation = head.children[childIndex]
res += relation + "(" + text[head.span.start : head.span.ending] + ", "
res += text[child.span.start : child.span.ending] + ")\n"
print("Verb SRL predicate-argument structure:")
print(res)
def getPropbankInfo(wordWithSense):
try:
word = propbank.roleset(wordWithSense)
except ValueError:
return None
return word.findall("roles/role")
def getSemanticRoles(view, text):
semanticRoles = []
trees = view.trees
for tree in trees:
stack = [tree.top]
while len(stack) > 0:
headIndex = stack.pop(-1)
head = tree.nodes[headIndex]
if head.children is not None and len(head.children) > 0:
predicate, sense = getPredicates(head)
roles = getPropbankInfo(predicate + "." + sense)
if roles is not None:
relatedRoles = []
for childIndex in head.children:
stack.append(childIndex)
child = tree.nodes[childIndex]
relation = head.children[childIndex]
if relation == "AM-NEG":
relatedRoles.append("NEGATED")
else:
n = relation[1]
for role in roles:
if role.attrib['n'] == n:
relatedRoles.append((role.attrib['descr'], text[child.span.start : child.span.ending]))
semanticRoles.append(relatedRoles)
return semanticRoles
def getSRLFeatures(view, text):
srls = []
trees = view.trees
for tree in trees:
stack = [tree.top]
while len(stack) > 0:
headIndex = stack.pop(-1)
head = tree.nodes[headIndex]
if head.children is not None and len(head.children) > 0:
predicate, sense = getPredicates(head)
roles = getPropbankInfo(predicate + "." + sense)
if roles is not None:
relatedRoles = []
negated = False
for childIndex in head.children:
relation = head.children[childIndex]
if relation == "AM-NEG":
negated = True
if negated:
predicate = "!" + predicate
for childIndex in head.children:
stack.append(childIndex)
child = tree.nodes[childIndex]
relation = head.children[childIndex]
n = relation[1]
if n == "M":
srls.append((relation, predicate, text[child.span.start : child.span.ending], child.span.start, child.span.ending, sense))
else:
for role in roles:
if role.attrib['n'] == n:
srls.append((role.attrib['descr'], predicate, text[child.span.start : child.span.ending], child.span.start, child.span.ending, sense))
return srls
def setup():
# Make socket
transport = TSocket.TSocket('nlp.rit.edu', 9010)
# Buffering is critical. Raw sockets are very slow
transport = TTransport.TFramedTransport(transport)
# Wrap in a protocol
protocol = TBinaryProtocol.TBinaryProtocol(transport)
# Create a client to use the protocol encoder
client = Curator.Client(protocol)
return transport, client
def main():
transport, client = setup()
forceUpdate = True
with TransportOpened(transport) as t:
avail = client.describeAnnotations()
for key in avail:
print(key + " provided by " + avail[key])
text = "A squirrel is storing a lot of nuts to prepare for a seasonal change in the environment."
try:
client.provide("ner", text, forceUpdate)
record = client.provide("srl", text, forceUpdate)
except:
print("Error. Bad text?")
return
labelViews = record.labelViews
clusterViews = record.clusterViews
parseViews = record.parseViews
displayParseView(parseViews.get("srl"), text)
print("------------------------------------------------")
print(text)
srl = getSRLFeatures(parseViews.get("srl"), text)
for x in srl:
print(x)
print("------------------------------------------------")
if __name__ == "__main__":
main()