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
what should I do if I want to get the text score?
I don't know what the return path means.
The text was updated successfully, but these errors were encountered:
for viterbi_search, I can get the right result by using this code:
seq, path = viterbi_search(posteriors, alphabet) scores = [posteriors[path[i]][dict[seq[i]]] for i in range(len(path))]
where dict can convert text-label into text-index.
but for beam search,it get wrong result.Why?
Sorry, something went wrong.
No branches or pull requests
what should I do if I want to get the text score?
I don't know what the return path means.
The text was updated successfully, but these errors were encountered: