spaCy/spacy/cli/converters/iob2json.py

46 lines
1.5 KiB
Python
Raw Normal View History

2017-05-19 21:27:51 +03:00
# coding: utf8
from __future__ import unicode_literals
from ...compat import json_dumps, path2str
from ...util import prints
2017-05-26 19:32:34 +03:00
from ...gold import iob_to_biluo
2017-05-19 21:27:51 +03:00
def iob2json(input_path, output_path, n_sents=10, *a, **k):
"""
Convert IOB files into JSON format for use with train cli.
"""
# TODO: This isn't complete yet -- need to map from IOB to
# BILUO
2017-05-28 16:11:39 +03:00
with input_path.open('r', encoding='utf8') as file_:
2017-05-19 21:27:51 +03:00
docs = read_iob(file_)
output_filename = input_path.parts[-1].replace(".iob", ".json")
output_file = output_path / output_filename
with output_file.open('w', encoding='utf-8') as f:
f.write(json_dumps(docs))
prints("Created %d documents" % len(docs),
title="Generated output file %s" % path2str(output_file))
def read_iob(file_):
sentences = []
for line in file_:
if not line.strip():
continue
2017-05-28 16:11:39 +03:00
tokens = [t.split('|') for t in line.split()]
if len(tokens[0]) == 3:
words, pos, iob = zip(*tokens)
else:
words, iob = zip(*tokens)
pos = ['-'] * len(words)
2017-05-26 19:32:34 +03:00
biluo = iob_to_biluo(iob)
2017-05-19 21:27:51 +03:00
sentences.append([
{'orth': w, 'tag': p, 'ner': ent}
2017-05-26 19:32:34 +03:00
for (w, p, ent) in zip(words, pos, biluo)
2017-05-19 21:27:51 +03:00
])
sentences = [{'tokens': sent} for sent in sentences]
paragraphs = [{'sentences': [sent]} for sent in sentences]
docs = [{'id': 0, 'paragraphs': [para]} for para in paragraphs]
return docs