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 ```