8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66bee40 commit 87c8573Copy full SHA for 87c8573
server.py
@@ -63,7 +63,7 @@ def parse_parser_results(text):
63
split_entry = re.split("\(|, ", line[:-1])
64
if len(split_entry) == 3:
65
rel, left, right = map(lambda x: remove_id(x), split_entry)
66
- tmp['tuples'].append(tuple(rel,left,right))
+ tmp['tuples'].append((rel,left,right))
67
print "\n", rel, left, right
68
elif "Coreference links" in line:
69
state = 5
0 commit comments