Hi guys,
Im training with Mozilla Common Voice Courpus Indonesia Language using Deepspeech 0.9.1 but got some problem
for information :
OS : Ubuntu 18.04.5
Python : 3.6.9
Tensorflow : 1.15.4
using this command :
python3 DeepSpeech.py \ --train_files $HOME/deepspeech/cv-corpus-5.1-2020-06-22/id/clips/train.csv \ --dev_files $HOME/deepspeech/cv-corpus-5.1-2020-06-22/id/clips/dev.csv \ --test_files $HOME/deepspeech/cv-corpus-5.1-2020-06-22/id/clips/test.csv \ --train_batch_size 128 \ --dev_batch_size 128 \ --test_batch_size 128 \ --checkpoint_dir $HOME/deepspeech/checkpoint \ --export_dir $HOME/deepspeech/model \ --n_hidden 2048 \ --learning_rate 0.0001 \ --dropout_rate 0.40 \ --epochs 30 \ --noearly_stop
Problem :
as stated on Release DeepSpeech 0.8.2 · mozilla/DeepSpeech · GitHub release note, i need 125 Epoch to train base model but because limited processing power (as im using CPU for training) im divided it into 4 cycle (1 cycle 30 Epoch)
on first cycle (epoch 0 ~ 29) new best validating model with loss 88.229980
Second cycle (epoch 30 ~ 59) new best validating model with loss 78.402226
but on Third Cycle (Epoch 60 ~ 89) new best validating model with loss 79.140933
Also when i rerun the training with 5 Epochs i got new best validating model with loss 82.142130.
so may someone help me, Thanks