Closed hasansalimkanmaz closed 4 years ago
Hi,
can you show what you pass as chars and wordChars to the algorithm?
Just as a reminder:
In your case (just guessing) this could look like this:
So, wordChars is a subset of chars and therefore, there can't be more characters in wordChars than chars, therefore 0<len(wordChars)<=len(chars)
must hold.
One more thing: if possible, don't use word beam search while training, as it is slower than best path decoding. I would train using best path decoding, and if best path decoding gives good results, than word beam search should also give good results.
Thanks for crystal clear explanation.
It worked and improved my accuracy.
If you create a new issue, please provide the following information:
Which program causes the problem
Versions
Issue I couldn't understand this error message in your code. I got this error during evalution of 1st epoch in the training.
My task is to recognize handwritten dates, such as "19/10/1993" it only contains slashes and numbers. Does it result from this?
How can I solve the issue?