baidu-research / ba-dls-deepspeech

Apache License 2.0
486 stars 174 forks source link

Help with testing #5

Closed basilabraham123 closed 7 years ago

basilabraham123 commented 7 years ago

While testing the test-clean data set using test.py only 1879 predictions are generated. The test set has 2620 utterances. Is there any parameter to change so that we get all 2620 predictions. Is there a sample code to use the output_function to generate the posteriors.

srvinay commented 7 years ago

You should try changing https://github.com/baidu-research/ba-dls-deepspeech/blob/master/data_generator.py#L53 to increase the max_duration argument. Currently, that's set to 10 seconds so the code ignores utterances longer than that.

basilabraham123 commented 7 years ago

Thank you sir