Any good tutorial with source that will demonstrate how to develop neural network (step bay step for dummies ;-))
Asked
Active
Viewed 2.8k times
47
-
15It's constructive if you want to construct a neural network, and don't know how. The guy who closed it is the one who isn't very constructive ;-) – toddmo Jul 13 '14 at 00:16
-
I created a neural network library in C# here https://github.com/garrypas/sodiumplus for anyone who is interested – garryp Feb 17 '17 at 16:42
5 Answers
15
Here is good example: Brainnet 1 - A Neural Netwok Project - With Illustration And Code - Learn Neural Network Programming Step By Step And Develop a Simple Handwriting Detection System that will demonstrate some practical uses of neural network programming.

SelvirK
- 925
- 3
- 18
- 42
-
3You can read it from my blog as well - http://amazedsaint.blogspot.com/2008/01/neural-networks-part-i-simple.html – amazedsaint May 19 '09 at 10:33
11
There's a really good article on CodeProject: Image Recognition with Neural Networks.

Mark Cidade
- 98,437
- 31
- 224
- 236
-
In that article the author activates the nodes in the input layer. From what I've learned (from various sources), you shouldn't do this. The input layer only acts as a data holder for the input patterns. Am I wrong or is the author wrong? – Dennis Apr 25 '11 at 03:06
-
-
@ Dennis: I'm not proficient in NN but it sounds reasonable: Separation of concern applied to NN somewhat. – menjaraz Dec 24 '11 at 05:23
0
You can have a look at http://generation5.org/articles.asp?Action=List&Topic=Neural+Networks which contains a lot of articles about various types of neural networks targeting both beginners and advanced fields.

jeremy-george
- 1,171
- 1
- 9
- 20