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
In the python code we have a list called buckets with following values:
buckets
buckets = [54, 80, 124, 182, 272, 410, 614, 922, 1383, 2212]
what is the purpose of this list?
The text was updated successfully, but these errors were encountered:
in order to create batches for OCR training, we work with fixed widths of size 54, 80, 124 ...
so you take the proposal, and pick the best corresponding width from list. In this way you are able to pass more samples in one batch to network.
Sorry, something went wrong.
No branches or pull requests
In the python code we have a list called
buckets
with following values:buckets = [54, 80, 124, 182, 272, 410, 614, 922, 1383, 2212]
what is the purpose of this list?
The text was updated successfully, but these errors were encountered: