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

1. added training utils with custom data loaders with remote rpyc dataservice support

2. fix validation correction dump path
3. cache dataset for precaching before training to memory
4. update dependencies
This commit is contained in:
2020-05-14 15:39:44 +05:30
parent d4aef4088d
commit 83db445a6f
7 changed files with 419 additions and 13 deletions

View File

@@ -113,7 +113,7 @@ def dump_validation_ui_data(
@app.command()
def dump_corrections(dump_path: Path = Path("./data/corrections.json")):
def dump_corrections(dump_path: Path = Path("./data/valiation_data/corrections.json")):
col = get_mongo_conn().test.asr_validation
cursor_obj = col.find({"type": "correction"}, projection={"_id": False})