mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
100 lines
3.0 KiB
Python
100 lines
3.0 KiB
Python
"""Convert OntoNotes into a json format.
|
|
|
|
doc: {
|
|
id: string,
|
|
paragraphs: [{
|
|
raw: string,
|
|
segmented: string,
|
|
sents: [int],
|
|
tokens: [{
|
|
start: int,
|
|
tag: string,
|
|
head: int,
|
|
dep: string}],
|
|
brackets: [{
|
|
start: int,
|
|
end: int,
|
|
label: string,
|
|
flabel: int}]}]}
|
|
|
|
Consumes output of spacy/munge/align_raw.py
|
|
"""
|
|
import plac
|
|
import json
|
|
from os import path
|
|
import re
|
|
|
|
from spacy.munge import read_ptb
|
|
from spacy.munge import read_conll
|
|
|
|
|
|
def _iter_raw_files(raw_loc):
|
|
files = json.load(open(raw_loc))
|
|
for f in files:
|
|
yield f
|
|
|
|
|
|
def format_doc(section, filename, raw_paras, ptb_loc, dep_loc):
|
|
ptb_sents = read_ptb.split(open(ptb_loc).read())
|
|
dep_sents = read_conll.split(open(dep_loc).read())
|
|
|
|
assert len(ptb_sents) == len(dep_sents)
|
|
|
|
i = 0
|
|
doc = {'id': filename, 'paragraphs': []}
|
|
for raw_sents in raw_paras:
|
|
para = {
|
|
'raw': ' '.join(sent.replace('<SEP>', '') for sent in raw_sents),
|
|
'sents': [],
|
|
'tokens': [],
|
|
'brackets': []}
|
|
offset = 0
|
|
for raw_sent in raw_sents:
|
|
_, brackets = read_ptb.parse(ptb_sents[i], strip_bad_periods=True)
|
|
_, annot = read_conll.parse(dep_sents[i], strip_bad_periods=True)
|
|
for token_id, token in enumerate(annot):
|
|
try:
|
|
head = (token['head'] + offset) if token['head'] != -1 else -1
|
|
para['tokens'].append({
|
|
'id': offset + token_id,
|
|
'orth': token['word'],
|
|
'tag': token['tag'],
|
|
'head': head,
|
|
'dep': token['dep']})
|
|
except:
|
|
raise
|
|
for label, start, end in brackets:
|
|
if start != end:
|
|
para['brackets'].append({'label': label,
|
|
'start': start + offset,
|
|
'end': (end-1) + offset})
|
|
i += 1
|
|
offset += len(annot)
|
|
para['sents'].append(offset)
|
|
doc['paragraphs'].append(para)
|
|
return doc
|
|
|
|
|
|
def main(onto_dir, raw_dir, out_dir):
|
|
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)
|
|
docs = []
|
|
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_loc = path.join(onto_dir, section, '%s.parse' % filename)
|
|
dep_loc = ptb_loc + '.dep'
|
|
if path.exists(ptb_loc) and path.exists(dep_loc):
|
|
doc = format_doc(section, filename, raw_paras, ptb_loc, dep_loc)
|
|
docs.append(doc)
|
|
with open(path.join(out_dir, '%s.json' % section), 'w') as file_:
|
|
json.dump(docs, file_, indent=4)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
plac.call(main)
|
|
|