Export dir not specified during training

Hello,

I am new to DeepSpeech and I have trained a model but forgot to include – export_dir parameter during the training. The training process has completed now.
I was wondering if there is a way to export the model after the training. If it is not possible, is there another option that would not require going through the whole training process again.

Yes, just reload the checkpoint with --checkpoint_dir and any other appropriate flags, and add --export_dir, if you don’t specify any dataset it will just export.

That worked perfectly, thank you!