githubharald / SimpleHTR

Handwritten Text Recognition (HTR) system implemented with TensorFlow.
https://towardsdatascience.com/2326a3487cd5
MIT License
1.96k stars 885 forks source link

IAM line dataset input size and maxTextlen parameters values #140

Closed Sofiane23i closed 2 years ago

Sofiane23i commented 2 years ago

Hello,

Thank you for sharing your implementation of offline handwriting recognition

To train IAM line dataset, I suppose you modified some parameters like image input size and maxTextLen, (for word dataset it was (128, 32) image input and 32 maxTextlen)

can you share these parameters values please ?

Thanks

githubharald commented 2 years ago

in line mode, width is 256 instead of 128, and max. text length is simply width/4.

https://github.com/githubharald/SimpleHTR/blob/master/src/main.py#L26