Skip to content

Commit

Permalink
Merge pull request #3 from lissyx/add-training-scripts
Browse files Browse the repository at this point in the history
Adding training scripts for fra and kab
  • Loading branch information
lissyx authored Apr 23, 2019
2 parents 8f01cca + 27e06da commit d7ae57e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions bin/train_fr.sh
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
1 change: 1 addition & 0 deletions bin/train_kab.sh
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

0 comments on commit d7ae57e

Please sign in to comment.