Merge pull request #1430 from lissyx/cv-other

Improve doc wrt Common Voice 'other'

X-DeepSpeech: NOBUILD
This commit is contained in:
lissyx 2018-07-02 10:54:55 -07:00 committed by GitHub
commit ea8e4637d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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