From 058f53af3ab66082b1e566c9e6c0c19e6c77020f Mon Sep 17 00:00:00 2001 From: Karan Sagar Date: Fri, 10 Jul 2020 15:24:45 -0400 Subject: [PATCH 1/2] Update TRAINING.rst I'm new to DeepSpeech, but I noticed when following the training instructions that the filenames _appear_ to be relative paths in the CSV. Let me know if I'm misinterpreting. Thanks! --- doc/TRAINING.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/TRAINING.rst b/doc/TRAINING.rst index f42cf819..4cdf41e5 100644 --- a/doc/TRAINING.rst +++ b/doc/TRAINING.rst @@ -124,7 +124,7 @@ It will also add the following ``.csv`` files: * ``clips/dev.csv`` * ``clips/test.csv`` -All entries in these CSV files refer to their samples by absolute paths. So moving this sub-directory would require another import or tweaking the CSV files accordingly. +All entries in these CSV files refer to their samples by relative paths. To use Common Voice data during training, validation and testing, you pass (comma separated combinations of) their filenames into ``--train_files``\ , ``--dev_files``\ , ``--test_files`` parameters of ``DeepSpeech.py``. From 36a2f3b38d7527e3603e96692f449b773a5b6fff Mon Sep 17 00:00:00 2001 From: Karan Sagar Date: Thu, 16 Jul 2020 12:38:59 -0400 Subject: [PATCH 2/2] Update TRAINING.rst Update wording on relative / absolute paths. --- doc/TRAINING.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/TRAINING.rst b/doc/TRAINING.rst index 4cdf41e5..764088b5 100644 --- a/doc/TRAINING.rst +++ b/doc/TRAINING.rst @@ -124,7 +124,7 @@ It will also add the following ``.csv`` files: * ``clips/dev.csv`` * ``clips/test.csv`` -All entries in these CSV files refer to their samples by relative paths. +Entries in CSV files can refer to samples by their absolute or relative paths. Here, the importer produces relative paths. To use Common Voice data during training, validation and testing, you pass (comma separated combinations of) their filenames into ``--train_files``\ , ``--dev_files``\ , ``--test_files`` parameters of ``DeepSpeech.py``.