-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
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
maybe the code itself support training with text length > 26 #50
Comments
Hi, in fact, it only depends on the output lstm T length. |
thanks for your reply. |
I got the answer from your reply from #17
then output width of the CRNN().cnn will be the T length? and text length should not exceed T?
|
Yeah |
Got it, thank you so much. |
@Holmeyoung thank you so much. |
@Holmeyoung
in #17 you mentioned that your codes only support training with text length <= 26, I found that
(1) when resize the images to 100X32. length of the raw character output is 26. so we cannot train with text length > 26.
(2) when keep_ratio = True, only the height of the image is resized to 32, the width of the image is not fixed and vary for different images. so length of the raw character output is not fixed and depends on the width of the image, maybe we can train with any text length
conclusion: we can train with any text length when we set keep_ratio = True during training
Thank you so much.
The text was updated successfully, but these errors were encountered: