1
0
mirror of https://github.com/malarinv/jasper-asr.git synced 2026-03-09 19:02:35 +00:00

1. added conv data generator

2. more utils
This commit is contained in:
2020-06-16 15:38:07 +05:30
parent 7472b6457d
commit 7dbb04dcbf
6 changed files with 160 additions and 4 deletions

View File

@@ -135,7 +135,6 @@ def dump_ui(
"annotation_only": annotation_only,
"enable_plots": enable_plots,
}
typer.echo(f"Writing dump to {dump_path}")
ExtendedPath(dump_path).write_json(ui_config)
@@ -150,7 +149,6 @@ def dump_corrections(
cursor_obj = col.find({"type": "correction"}, projection={"_id": False})
corrections = [c for c in cursor_obj]
typer.echo(f"Writing dump to {dump_path}")
ExtendedPath(dump_path).write_json(corrections)