DeepSpeech2 implementation detail not consistent with paper
Created by: lispc
https://github.com/PaddlePaddle/models/blob/develop/deep_speech_2/decoders/scorer_deprecated.py#L67
score = self._alpha * np.log(lm) + self._beta * np.log(word_cnt)
While in the original paper, there is no log with word_cnt.