47

Any good tutorial with source that will demonstrate how to develop neural network (step bay step for dummies ;-))

bias
  • 1,467
  • 3
  • 19
  • 39
  • 15
    It'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 Answers5

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
  • 3
    You 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
  • I don't know but isn't it common with backpropagation? – Mark Cidade Apr 25 '11 at 05:34
  • @ 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
7

Here is an online course on C# neural network programming.

http://www.heatonresearch.com/course/intro-neural-nets-cs

Miley
  • 460
  • 5
  • 10
1

An interesting tutorial is available here. Hopefully it will act as an introduction for you.

Martin
  • 39,569
  • 20
  • 99
  • 130
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