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
According to tensorflow ctc documentation the bank label should be in the last position in the vocabulary,
For example, for a vocabulary containing 3 labels `[a, b, c]`, `num_classes = 4` and the labels indexing is `{a: 0, b: 1, c: 2, blank: 3}`.
the code in data.py implement it is on index value 0.
# index to byte mapping index2byte = ['<EMP>', ' ', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
Is this a bug?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
According to tensorflow ctc documentation the bank label should be in the last position in the vocabulary,
the code in data.py implement it is on index value 0.
Is this a bug?
The text was updated successfully, but these errors were encountered: