How do I get model files from checkpoints

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.

Check out the help --helpfull: if you specify the checkpoint dir and no train_files neither dev_files nor test_files it will just export if you do export_dir.