-
Notifications
You must be signed in to change notification settings - Fork 7
Description
Hi. I am using this repo as a part of my project. And I am currently having a problem with the dimensions of the image I pass to the HME recognizer.
If I use the original image size, I get the following error:
Exception: Kernel shape must have the same length as input, but received kernel of shape (3, 3, 1, 32) and input of shape (None, None, 28, 28, 1).
In my attempts to resize the image, I have to go down to sizes such as 120x120 to avoid getting the above error. But when I go down to that image size, then the handwritten math is barely recognizable.
So instead of constantly guessing, I wanted to know what the actual requirements of the model are regarding image size and whether it would be possible to pass larger images (e.g. 600x600) to the model as well.
Thanks in advance!