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
The error is pretty obvious in this line
doctr/doctr/models/recognition/utils.py
Line 34 in 5715116
seq_len = min(len(a), len(b)) if seq_len == 0: # One sequence is empty, return the other return b if len(a) == 0 else a
The text was updated successfully, but these errors were encountered:
Hey @BenoitdeKersabiec 👋🏼 ,
I will check this. Could you provide an example in the meanwhile ? :)
Sorry, something went wrong.
#1229
No branches or pull requests
The error is pretty obvious in this line
doctr/doctr/models/recognition/utils.py
Line 34 in 5715116
Returning b in both cases is probably a mistake. It should probably be
The text was updated successfully, but these errors were encountered: