Make cli/train.py not eat exception

This commit is contained in:
Isaac Sijaranamual 2017-12-10 22:52:26 +01:00
parent 020a7e5d52
commit e188b61960
1 changed files with 3 additions and 6 deletions

View File

@ -165,12 +165,9 @@ def train(cmd, lang, output_dir, train_data, dev_data, n_iter=30, n_sents=0,
gpu_wps=gpu_wps)
finally:
print("Saving model...")
try:
with (output_path / 'model-final.pickle').open('wb') as file_:
with nlp.use_params(optimizer.averages):
dill.dump(nlp, file_, -1)
except:
print("Error saving model")
def _render_parses(i, to_render):