2017-04-07 14:04:17 +03:00
|
|
|
# coding: utf8
|
2017-04-13 14:51:54 +03:00
|
|
|
from __future__ import unicode_literals
|
2017-04-07 14:04:17 +03:00
|
|
|
|
2017-05-22 13:28:58 +03:00
|
|
|
import plac
|
2017-04-13 14:51:54 +03:00
|
|
|
from pathlib import Path
|
2017-04-07 14:04:17 +03:00
|
|
|
|
2017-05-19 21:24:39 +03:00
|
|
|
from .converters import conllu2json, iob2json
|
2017-05-08 00:25:29 +03:00
|
|
|
from ..util import prints
|
2017-04-07 14:04:17 +03:00
|
|
|
|
|
|
|
# Converters are matched by file extension. To add a converter, add a new entry
|
|
|
|
# to this dict with the file extension mapped to the converter function imported
|
|
|
|
# from /converters.
|
|
|
|
|
|
|
|
CONVERTERS = {
|
2017-05-17 14:13:48 +03:00
|
|
|
'.conllu': conllu2json,
|
2017-05-19 21:24:39 +03:00
|
|
|
'.conll': conllu2json,
|
|
|
|
'.iob': iob2json
|
2017-04-07 14:04:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-22 13:28:58 +03:00
|
|
|
@plac.annotations(
|
|
|
|
input_file=("input file", "positional", None, str),
|
|
|
|
output_dir=("output directory for converted file", "positional", None, str),
|
2017-08-18 23:26:12 +03:00
|
|
|
n_sents=("Number of sentences per doc", "option", "n", int),
|
2017-05-22 13:28:58 +03:00
|
|
|
morphology=("Enable appending morphology to tags", "flag", "m", bool)
|
|
|
|
)
|
2017-08-18 23:26:12 +03:00
|
|
|
def convert(cmd, input_file, output_dir, n_sents=1, morphology=False):
|
2017-05-27 21:01:46 +03:00
|
|
|
"""
|
|
|
|
Convert files into JSON format for use with train command and other
|
2017-05-22 13:28:58 +03:00
|
|
|
experiment management functions.
|
|
|
|
"""
|
2017-04-07 14:04:17 +03:00
|
|
|
input_path = Path(input_file)
|
|
|
|
output_path = Path(output_dir)
|
2017-05-08 00:25:29 +03:00
|
|
|
if not input_path.exists():
|
2017-05-22 13:28:58 +03:00
|
|
|
prints(input_path, title="Input file not found", exits=1)
|
2017-04-07 14:04:17 +03:00
|
|
|
if not output_path.exists():
|
2017-05-22 13:28:58 +03:00
|
|
|
prints(output_path, title="Output directory not found", exits=1)
|
2017-05-08 00:25:29 +03:00
|
|
|
file_ext = input_path.suffix
|
|
|
|
if not file_ext in CONVERTERS:
|
|
|
|
prints("Can't find converter for %s" % input_path.parts[-1],
|
2017-05-22 13:28:58 +03:00
|
|
|
title="Unknown format", exits=1)
|
2017-05-26 19:32:41 +03:00
|
|
|
CONVERTERS[file_ext](input_path, output_path,
|
2017-05-27 23:44:42 +03:00
|
|
|
n_sents=n_sents, use_morphology=morphology)
|