Where to start Handwritten Recognition using Neural Network?

后端 未结 11 2534
春和景丽
春和景丽 2020-12-24 09:23

I\'ve been trying to learn about Neural Networks for a while now, and I can understand some basic tutorials online. Now i want to develop online handwritten recognition usin

11条回答
  •  醉话见心
    2020-12-24 09:37

    Peter Norvig's Artificial Intelligence: A Modern Approach is a good book on general AI and explains a lot about the basics, and there is a section on Back Propagation neural networks.

    To train your neural network you'll need datasets.

    There's THE MNIST DATABASE of handwritten digits, or the Pen-Based Recognition of Handwritten Digits Data Set at the UCI Machine Learning Repository

    The UCI ML repository has lots of great datasets, many of which would be good to train neural networks. Even if you don't know what they're about you can grab some and see if your ML system can do the classification tasks. Look at Classification tasks with a large number of attributes and instances, although you can try smaller ones too when you start out.

    By the way, there are a lot more techniques besides neural networks, including Support Vector Machines, which are popular.

提交回复
热议问题