forked from mozilla/DeepSpeech
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from lissyx/add-training-scripts
Adding training scripts for fra and kab
- Loading branch information
Showing
2 changed files
with
2 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
python -u DeepSpeech.py --alphabet_config_path $HOME/tmp/deepspeech-fr/data/alphabet.txt --train_files $HOME/tmp/deepspeech-fr/data/ts/ts_2019-02-08_fr_FR_train.csv,$HOME/tmp/deepspeech-fr/data/cv/clips/train.csv --train_cached_features_path $HOME/tmp/deepspeech-fr/data/train.hdf5 --dev_files $HOME/tmp/deepspeech-fr/data/ts/ts_2019-02-08_fr_FR_dev.csv,$HOME/tmp/deepspeech-fr/data/cv/clips/dev.csv --dev_cached_features_path $HOME/tmp/deepspeech-fr/data/dev.hdf5 --test_files $HOME/tmp/deepspeech-fr/data/ts/ts_2019-02-08_fr_FR_test.csv,$HOME/tmp/deepspeech-fr/data/cv/clips/test.csv --test_cached_features_path $HOME/tmp/deepspeech-fr/data/test.hdf5 --train_batch_size 96 --dev_batch_size 96 --test_batch_size 96 --n_hidden 2048 --epoch 30 --learning_rate 0.000025 --display_step 0 --validation_step 1 --noearly_stop --dropout_rate 0.15 --checkpoint_step 1 --checkpoint_dir $HOME/tmp/deepspeech-fr/checkpoints/ --export_dir $HOME/tmp/deepspeech-fr/models/ --lm_binary_path $HOME/tmp/deepspeech-fr/lm/lm.binary --lm_trie_path $HOME/tmp/deepspeech-fr/lm/trie |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
python -u DeepSpeech.py --alphabet_config_path $HOME/tmp/deepspeech-kab/data/alphabet.txt --train_files $HOME/tmp/deepspeech-kab/data/cv/clips/train.csv --train_cached_features_path $HOME/tmp/deepspeech-kab/data/train.hdf5 --dev_files $HOME/tmp/deepspeech-kab/data/cv/clips/dev.csv --dev_cached_features_path $HOME/tmp/deepspeech-kab/data/dev.hdf5 --test_files $HOME/tmp/deepspeech-kab/data/cv/clips/test.csv --test_cached_features_path $HOME/tmp/deepspeech-kab/data/test.hdf5 --train_batch_size 96 --dev_batch_size 96 --test_batch_size 96 --n_hidden 2048 --epoch 90 --learning_rate 0.000005 --display_step 0 --validation_step 1 --noearly_stop --dropout_rate 0.15 --checkpoint_step 1 --checkpoint_dir $HOME/tmp/deepspeech-kab/checkpoints/ --export_dir $HOME/tmp/deepspeech-kab/models/ --lm_binary_path $HOME/tmp/deepspeech-kab/lm/lm.binary --lm_trie_path $HOME/tmp/deepspeech-kab/lm/trie |