Merge pull request #540 from kendricktan/master

Fixed train_parser examples when model_dir isn't None
This commit is contained in:
Matthew Honnibal 2016-10-21 00:49:39 +11:00 committed by GitHub
commit 1e3c1d6044

View File

@ -27,10 +27,10 @@ def train_parser(nlp, train_data, left_labels, right_labels):
def main(model_dir=None):
if model_dir is not None:
model_dir = pathlb.Path(model_dir)
model_dir = pathlib.Path(model_dir)
if not model_dir.exists():
model_dir.mkdir()
assert model_dir.isdir()
assert model_dir.is_dir()
nlp = spacy.load('en', tagger=False, parser=False, entity=False, vectors=False)
@ -62,7 +62,7 @@ def main(model_dir=None):
print(word.text, word.dep_, word.head.text)
if model_dir is not None:
with (model_dir / 'config.json').open('wb') as file_:
with (model_dir / 'config.json').open('w') as file_:
json.dump(parser.cfg, file_)
parser.model.dump(str(model_dir / 'model'))