Fix output of best model

This commit is contained in:
Matthew Honnibal 2018-06-25 23:05:56 +02:00
parent 5a65418c40
commit c83fccfe2a

View File

@ -205,7 +205,7 @@ def _collate_best_model(meta, output_path, components):
shutil.copytree(output_path / 'model-final', best_dest)
for component, best_component_src in bests.items():
shutil.rmtree(best_dest / component)
shutil.copytree(best_component_src, best_dest / component)
shutil.copytree(best_component_src / component, best_dest / component)
with (best_component_src / 'accuracy.json').open() as file_:
accs = json.load(file_)
for metric in _get_metrics(component):