0

The model can now recognize only single letter with tf. How can I make it recognize for sequential letters words?

theduck
  • 2,589
  • 13
  • 17
  • 23

2 Answers2

0

Handwritten Digit Recognition. ... MNIST is a widely used dataset for the hand-written digit classification task. It consists of 70,000 labeled 28x28 pixel grayscale pix of hand-written digits. The dataset is split into 60,000 education images and 10,000 test images.

Carm
  • 1
0

Depending on the quality and types of images, the difficulty of the task various. If you were to do text detection in natural scenes, it is quite difficult and requires multiple models, there are plenty of research papers in this area. And lots of Kaggle notebooks. This link (a good read), explains the various factors to take into account and why it is so difficult, also shares his implementation.

If you are trying to identify text in a simple binary image, then this might help Separate image of text into component character images

codeblooded
  • 320
  • 1
  • 9