Artificial Intelligence | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 22

Artificial Intelligence

hello guys. I wanna write a program with java or python that can recognize handwriting. can some one help?! any tutorial source?!

17th Apr 2018, 6:26 PM
Mohammad Hosein
Mohammad Hosein - avatar
5 Answers
+ 18
You can start from here and carry one for several more lessons: https://www.sololearn.com/learn/733/?ref=app
17th Apr 2018, 7:20 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 17
heres just for digits in python. this has a lot of information. but if its your first time implementing a neural net, I suggest starting with something simpler like the classic xor example. links for both below. for digits: http://neuralnetworksanddeeplearning.com/chap1 for xor: http://www.bogotobogo.com/python/python_Neural_Networks_Backpropagation_for_XOR_using_one_hidden_layer.php
17th Apr 2018, 7:08 PM
Stefan Kef
Stefan Kef - avatar
+ 9
you can use opencv library and it's available both Java and python
5th May 2018, 9:32 PM
Zayzou
Zayzou - avatar
+ 7
The method I used above isn't really standard but apart from that you could use a Multilayer Perceptron or a Convulutional Neural Network.
8th May 2018, 2:44 AM
Poet🎭
Poet🎭 - avatar
+ 6
I once use the k-Nearest Neighbor algorithm but it involved lot of preprocessing such as turning the black and white images of numbers into images of 1's and 0's(1 for dark parts of the image, 0 for bright parts). And it worked!
8th May 2018, 2:43 AM
Poet🎭
Poet🎭 - avatar