I am going through the documentation to retrain existing deepspeech-0.5.1-models with my own data, where only checkpoints are used to retrain the model. Here I downloaded the checkpoints directory and the code looks as below.
python3 -u DeepSpeech.py \ --train_files "/home/dev_ds/deepspeech_dir/corpus/corpus-train.csv" \ --dev_files "/home/dev_ds/deepspeech_dir/corpus/corpus-dev.csv" \ --test_files "/home/dev_ds/deepspeech_dir/corpus/corpus-test.csv" \ --alphabet_config_path "/home/dev_ds/deepspeech_dir/deepspeech-0.5.1-models/alphabet.txt" \ --lm_binary_path "/home/dev_ds/deepspeech_dir/my-model/lm.binary" \ --lm_trie_path "/home/dev_ds/deepspeech_dir/my-model/trie" \ --checkpoint_dir /home/dev_ds/deepspeech_dir/deepspeech-0.5.1-checkpoint/ \ --train_batch_size 2 \ --learning_rate 0.000001 \ --export_dir "/home/dev_ds/deepspeech_dir/my-model/"
I have two questions