I forget to put --export_dir flag when I am training the model. The training process started and over the middle of the way to complete.
python3 DeepSpeech.py --n_hidden 2048 --checkpoint_dir deepspeech-trained-model/--epochs 5 --train_files my-train.csv --dev_files my-dev.csv --test_files my_dev.csv --learning_rate 0.0001
How do I get models files from the checkpoint directory? So that I can do inference for new audio samples.
Thanks in advance.