-
Notifications
You must be signed in to change notification settings - Fork 11
/
spacy_formatter.py
198 lines (177 loc) · 6.02 KB
/
spacy_formatter.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
186
187
188
189
190
191
192
193
194
195
196
197
198
"""Convert OntoNotes into a json format.
Andy note: This code was taken in its entirety from
https://github.com/explosion/spaCy/blob/e140e03516845cd1bc507420c2bcbe1f3ae6571c/bin/prepare_treebank.py
Author credit to Explosion AI/@honnibal
doc: {
id: string,
paragraphs: [{
raw: string,
sents: [int],
tokens: [{
start: int,
tag: string,
head: int,
dep: string}],
ner: [{
start: int,
end: int,
label: string}],
brackets: [{
start: int,
end: int,
label: string}]}]}
Consumes output of spacy/munge/align_raw.py
"""
from __future__ import unicode_literals
import plac
import json
from os import path
import os
import re
import codecs
from munge import read_ptb
from munge import read_conll
from munge import read_ner
def _iter_raw_files(raw_loc):
files = json.load(open(raw_loc))
for f in files:
yield f
def format_doc(file_id, raw_paras, ptb_text, dep_text, ner_text):
ptb_sents = read_ptb.split(ptb_text)
#dep_sents = read_conll.split(dep_text)
#if len(ptb_sents) != len(dep_sents):
# return None
dep_sents = []
if ner_text is not None:
ner_sents = read_ner.split(ner_text)
else:
ner_sents = [None] * len(ptb_sents)
i = 0
doc = {'id': file_id}
if raw_paras is None:
doc['paragraphs'] = [format_para(None, ptb_sents, dep_sents, ner_sents)]
else:
doc['paragraphs'] = []
for raw_sents in raw_paras:
doc['paragraphs'].append(
format_para(
' '.join(raw_sents).replace('<SEP>', ''),
ptb_sents[i:i+len(raw_sents)],
dep_sents[i:i+len(raw_sents)],
ner_sents[i:i+len(raw_sents)]))
i += len(raw_sents)
return doc
def format_para(raw_text, ptb_sents, dep_sents, ner_sents):
para = {
'raw': raw_text,
'sents': [],
'tokens': [],
'brackets': []}
offset = 0
assert len(ptb_sents) == len(dep_sents) == len(ner_sents)
for ptb_text, dep_text, ner_text in zip(ptb_sents, dep_sents, ner_sents):
_, annot = read_conll.parse(dep_text, strip_bad_periods=True)
if ner_text is not None:
_, ner = read_ner.parse(ner_text, strip_bad_periods=True)
else:
ner = ['-' for _ in annot]
for token_id, (token, token_ent) in enumerate(zip(annot, ner)):
para['tokens'].append(format_token(offset, token_id, token, token_ent))
_, brackets = read_ptb.parse(ptb_text, strip_bad_periods=True)
for label, start, end in brackets:
if start != end:
para['brackets'].append({
'label': label,
'first': start + offset,
'last': (end-1) + offset})
offset += len(annot)
para['sents'].append(offset)
return para
def format_token(offset, token_id, token, ner):
head = (token['head'] + offset) if token['head'] != -1 else -1
return {
'id': offset + token_id,
'orth': token['word'],
'tag': token['tag'],
'head': head,
'dep': token['dep'],
'ner': ner}
def read_file(*pieces):
loc = path.join(*pieces)
if not path.exists(loc):
return None
else:
return codecs.open(loc, 'r', 'utf8').read().strip()
def get_file_names(section_dir, subsection):
filenames = []
for fn in os.listdir(path.join(section_dir, subsection)):
filenames.append(fn.rsplit('.', 1)[0])
return list(sorted(set(filenames)))
def main(onto_dir, raw_dir, out_loc):
# All but WSJ --- we do that separately, as we have the source docs
sections = [
'bc/cctv',
'bc/cnn',
'bc/msnbc',
'bc/p2.5_a2e',
'bc/p2.5_c2e',
'bc/phoenix',
'bn/abc',
'bn/cnn',
'bn/mnb',
'bn/nbc',
'bn/p2.5_a2e',
'bn/p2.5_c2e',
'bn/pri',
'bn/voa',
'mz/sinorama',
'nw/dev_09_c2e',
'nw/p2.5_a2e',
'nw/p2.5_c2e',
'nw/xinhua',
'pt/ot',
'tc/ch',
'wb/a2e',
'wb/c2e',
'wb/eng',
'wb/dev_09_c2e',
'wb/p2.5_a2e',
'wb/p2.5_c2e',
'wb/sel'
]
docs = []
for section in sections:
print(section)
section_dir = path.join(onto_dir, 'data', 'english', 'annotations', section)
print(section_dir)
for subsection in os.listdir(section_dir):
if subsection == ".DS_Store":
continue
print("subsection: ", subsection)
for fn in get_file_names(section_dir, subsection):
print("filename: ", fn)
ptb = read_file(section_dir, subsection, '%s.parse' % fn)
dep = read_file(section_dir, subsection, '%s.parse.dep' % fn)
ner = read_file(section_dir, subsection, '%s.name' % fn)
if ptb is not None:
doc = format_doc(fn, None, ptb, dep, ner)
if doc is not None:
docs.append(doc)
# Now do WSJ, with source alignment
onto_dir = path.join(onto_dir, 'data', 'english', 'annotations', 'nw', 'wsj')
for i in range(25):
section = str(i) if i >= 10 else ('0' + str(i))
#raw_loc = path.join(raw_dir, 'wsj%s.json' % section)
for j, (filename, raw_paras) in enumerate(_iter_raw_files(raw_loc)):
if section == '00':
j += 1
if section == '04' and filename == '55':
continue
ptb = read_file(onto_dir, section, '%s.parse' % filename)
dep = read_file(onto_dir, section, '%s.parse.dep' % filename)
ner = read_file(onto_dir, section, '%s.name' % filename)
#if ptb is not None and dep is not None:
docs.append(format_doc(filename, raw_paras, ptb, dep, ner))
print('nw/wsj', len(docs))
with open(out_loc, 'w') as file_:
json.dump(docs, file_, indent=4)