Here is my code for creating the language model
#!/bin/sh
set -xe
if [ ! -f DeepSpeech.py ]; then
echo “Please make sure you run this from DeepSpeech’s top level directory.”
exit 1
fi;
python -u DeepSpeech.py
–train_files /home/javi/speech/tools/backup/train/train.csv
–dev_files /home/javi/speech/tools/backup/train/dev.csv
–test_files /home/javi/speech/tools/backup/train/test.csv
–train_batch_size 80
–dev_batch_size 80
–test_batch_size 40
–n_hidden 375
–epoch 33
–validation_step 1
–early_stop True
–earlystop_nsteps 6
–estop_mean_thresh 0.1
–estop_std_thresh 0.1
–dropout_rate 0.22
–learning_rate 0.00095
–report_count 100
–use_seq_length False
–export_dir /home/javi/speech/tools/backup/export_modal/
–checkpoint_dir /home/javi/speech/tools/backup/checkout/
–alphabet_config_path /home/javi/speech/tools/backup/DeepSpeech/data/alphabet.txt
–lm_binary_path /home/javi/speech/tools/backup/DeepSpeech/data/lm.binary
“$@”
It’s been running for 48 hours, I knew it will take time for creating 30gb data.
Here i have one question, what is meant by epoch currently i am running on epoch 2 and in my commands above it mentioned 33 so how many epouh will run to create model could you please clarify?
Appreciated.