vote up 6 vote down star
10

Duplicate

http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks

I'm looking for a good (beginner level) reference book (or website) on different types of Neural Nets/their applications/examples. I don't have any particular application in mind, I'm just curious as to how I can make use of them. I'm specifically interested in using them with Python, but any language, or even just theory would do fine.

flag
ahh, thank you. I searched 'neural nets' but that didn't come up. – robmerica Mar 2 at 21:34
@robmerica: I usually search google to search stackoverflow. Type this into google: site:stackoverflow.com yoursearchcriteriahere. It's case sensitive. – George Stocker Mar 2 at 21:47
thanks! I'm new here, I'll keep that in mind. – robmerica Mar 2 at 22:05

6 Answers

vote up 4 vote down check

There is quite a extensive series of courses avaliable at Heaton Research. The course is for C# (Avaliable also for Java) however it explains the concepts at length, so I suggest you take a look at it even if you will code in python yourself.

The courses are in video format, however most important concepts are also writen down.

link|flag
vote up 0 vote down

For better understanding of neural networks i recommend free software:

Sharky Neural Network - Neural networks in action

There are many network structures available. You can see neural network learning progress like a movie - live view. SNN is very interesting software.

link|flag
vote up 0 vote down

"Programming collective intelligence" by Toby Segaran has a chapter about NN and also some examples in Python.

link|flag
vote up 3 vote down

See the below three links for Neural Networks using Python:

An Introduction to Neural Networks

Weave a Neural Net with Python

Neural Networks in Pyro

Ron Stephens

link|flag
vote up 1 vote down

I am currently using this site as a primer - not python, but a good feed-forward network example and pretty straightforward to follow.

At the same time I have been reading The Essence of Neural Networks by Robert Callan (ISBN 0-13-908732-X) which has a wide range of network architectures and applications and is an easy read.

Since you mention python I should direct you to this IBM site, which I found very useful and the underlying code is in python here. Citation should go to Neil Schemenauer.

I should also mention that I took the python code and ported it to numpy because it ran very slowly. I was unsuccessful, but before I rubbish numpy I have to say that I suspect my implementation was not very good and I'm sure there is a vectorised way of doing forward passes and backpropagations, I just didn't find it.

What I have ended up doing is implementing in Java by a simple port of the python code. This only took an hour or so and it runs about 100 times faster. I think this is more proof that I don't know what I'm doing with numpy, but if you are starting from scratch I would question whether raw python is the right language for you. You may be better coding this sort of thing in C or C++ if you have to use python.

Best of luck.

link|flag
vote up 0 vote down

AI-Junkie has a very good intuitive tutorial about neural networks. The site is designed to minimize the required mathematics so that the tutorial is accessible.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.