From 848706218b8891b14a2d0f8ce9977b0c175642d6 Mon Sep 17 00:00:00 2001 From: Alexandre Lissy Date: Mon, 2 Jul 2018 17:01:12 +0200 Subject: [PATCH] Improve doc wrt Common Voice 'other' Fixes #1423 X-DeepSpeech: NOBUILD --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 79f9aa9d..3bf8b372 100644 --- a/README.md +++ b/README.md @@ -262,6 +262,12 @@ All entries in the CSV files refer to their samples by absolute paths. So moving 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`. If, for example, Common Voice was imported into `../data/CV`, `DeepSpeech.py` could be called like this: +```bash +./DeepSpeech.py --train_files ../data/CV/cv-valid-train.csv --dev_files ../data/CV/cv-valid-dev.csv --test_files ../data/CV/cv-valid-test.csv +``` + +If you are brave enough, you can also include the `other` dataset, which contains not-yet-validated content, and thus can be broken from time to time: + ```bash ./DeepSpeech.py --train_files ../data/CV/cv-valid-train.csv,../data/CV/cv-other-train.csv --dev_files ../data/CV/cv-valid-dev.csv --test_files ../data/CV/cv-valid-test.csv ```