Display_step option in DeepSpeech.py /WER after every epoch of training

Hello, I have been using deepspeech 0.4.1. It seems there used to be a --display_step option which used to control WER report format. It is missing now. Where can I see CER/WER report after every epoch of training. Thanks !

That option was removed as it was too costly for our training runs. WER reports, specially at the beginning of training, can take a very long time compared to training epochs, so we usually do test reports at the end of training. If you want more frequent test epochs, you’ll have to change the training loop in DeepSpeech.py.

Thanks @reuben :slight_smile: