We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While implementing rescoring with conformer lm, I find that there are duplicated token seqs.
The reason is that the following code
icefall/icefall/decode.py
Lines 222 to 237 in 810b193
does not remove 0s from word_seq.
0
word_seq
Previous versions remove 0s from word_seq, see
Lines 218 to 227 in abadc71
It does not affect the final WER, but it incurs extra unncessary computations.
The text was updated successfully, but these errors were encountered:
One consequence after the fix is that we can use a larger value for num_paths, which could potentially affect the WER.
num_paths
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
While implementing rescoring with conformer lm, I find that there are duplicated token seqs.
The reason is that the following code
icefall/icefall/decode.py
Lines 222 to 237 in 810b193
does not remove
0
s fromword_seq
.Previous versions remove
0
s fromword_seq
, seeicefall/icefall/decode.py
Lines 218 to 227 in abadc71
It does not affect the final WER, but it incurs extra unncessary computations.
The text was updated successfully, but these errors were encountered: