I’ve downloaded the pre-trained checkpoint model from the official website.toegther with that I want to add my own wav files for training. so I continue training from the checkpoint as mentioned in https://github.com/mozilla/DeepSpeech#continuing-training-from-a-release-model . I’m using the following command to use fine tuning/transfer learning.
python3 DeepSpeech.py --n_hidden 2048 --checkpoint_dir …/…/…/deepspeech-0.4.1-checkpoint/ --epochs 4 --train _files trainFiles/trainthousandrows.csv --dev_files trainFiles/valthousandrows.csv --test_files trainFiles/testthousandrows.csv --learning_rate 0.0001
But when run this gives the following output:
/home/glmr/glmShare/atuldata/speechTrainingData/extractedData/DeepSpeech/trainFiles/valthousandrows.csv
Preprocessing [‘trainFiles/trainthousandrows.csv’]
inside preprocess
trainFiles/trainthousandrows.csv
Preprocessing done
Preprocessing [‘trainFiles/valthousandrows.csv’]
inside preprocess
/trainFiles/valthousandrows.csv
Preprocessing done
W Parameter --validation_step needs to be >0 for early stopping to work
trainFiles/testthousandrows.csv’]
inside preprocess
trainFiles/testthousandrows.csv
Preprocessing done
Computing acoustic model predictions…
100% (1000 of 1000) |############################################################################################################| Elapsed Time: 0:30:26 Time: 0:30:26
Decoding predictions…
100% (1000 of 1000) |############################################################################################################| Elapsed Time: 0:03:05 Time: 0:03:05
Test - WER: 0.339791, CER: 8.394000, loss: 69.201622
WER: 2.000000, CER: 5.000000, loss: 32.247986
- src: “bread”
- res: “true brad”
WER: 1.200000, CER: 17.000000, loss: 70.571228
- src: “volunteer please visit librivox org”
- res: “or do volunteer please visit ly provand dog or”
WER: 1.142857, CER: 23.000000, loss: 120.662392
- src: “recording by winfred henson s wwf by”
- res: “recording by winfried henson double u u u d that life”
WER: 1.000000, CER: 2.000000, loss: 2.363688
- src: “man”
- res: “a man”
WER: 1.000000, CER: 2.000000, loss: 4.948270
- src: “sins”
- res: “sen”
WER: 1.000000, CER: 3.000000, loss: 5.357125
- src: “died”
- res: “he died”
WER: 1.000000, CER: 4.000000, loss: 8.052462
- src: “them”
- res: “”
WER: 1.000000, CER: 3.000000, loss: 8.746547
- src: “eye”
- res: “a”
WER: 1.000000, CER: 4.000000, loss: 16.740582
- src: “said that”
- res: "had the "
WER: 1.000000, CER: 6.000000, loss: 18.676899
- src: “galileans received him”
- res: “the gale leans received him”
Why is the training not starting for the checkpoint model??