Speed bug in DeepSpeech2 data module
Created by: lispc
batch_manifest = list(sum(batch_manifest, ()))
is O(N^2) complexity. It took very very significant time during training. I gave a small demo gist code for verifying this. And the stackoverflow link also discussed this.
I will make a pull request to fix it.