What are some good resources for learning about Neural Networks? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T07:37:39Z http://stackoverflow.com/feeds/question/478947 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks 19 What are some good resources for learning about Neural Networks? cbrulak 2009-01-26T06:05:05Z 2009-08-12T21:45:06Z <p>I'm really interested in Neural nets, but I'm looking for a place to start. </p> <p>What resources are out there and what is a good starting project(s)? </p> http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/478954#478954 5 Answer by Friedrich for What are some good resources for learning about Neural Networks? Friedrich 2009-01-26T06:09:06Z 2009-01-26T06:09:06Z <p>Here are some example of Neural Net programming. <a href="http://www.codeproject.com/KB/recipes/neural_dot_net.aspx" rel="nofollow">http://www.codeproject.com/KB/recipes/neural_dot_net.aspx</a></p> <p>you can start reading here: <a href="http://www.geocities.com/CapeCanaveral/Lab/3765/neural.html" rel="nofollow">http://www.geocities.com/CapeCanaveral/Lab/3765/neural.html</a></p> <p>I for my part have visited a course about it and worked through some litarature</p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/478956#478956 8 Answer by Ben Daniel for What are some good resources for learning about Neural Networks? Ben Daniel 2009-01-26T06:09:44Z 2009-01-26T06:19:24Z <p>I'd <strong>highly recommend</strong> this excellent series by <strong>Anoop Madhusudanan</strong> on <a href="http://www.codeproject.com/KB/recipes/brainnet.aspx" rel="nofollow">Code Project</a>.</p> <p>He takes you through the fundamentals to understanding how they work in an <strong>easy to understand way</strong> and shows you how to use <strong>his brainnet library</strong> to create your own.</p> http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/478957#478957 0 Answer by Peter for What are some good resources for learning about Neural Networks? Peter 2009-01-26T06:10:29Z 2009-01-26T06:10:29Z <p>I think a good starting point would always be <a href="http://en.wikipedia.org/wiki/Neural_network" rel="nofollow">Wikipedia</a>. There you'll find some usefull links to documentations and projects which use neural nets, too.</p> http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/479003#479003 1 Answer by Corbin March for What are some good resources for learning about Neural Networks? Corbin March 2009-01-26T06:53:01Z 2009-01-26T06:53:01Z <p>If you don't mind spending money, <a href="http://rads.stackoverflow.com/amzn/click/0262011972" rel="nofollow">The Handbook of Brain Theory and Neural Networks</a> is very good. It contains 287 articles covering research in many disciplines. It starts with an introduction and theory and then highlights paths through the articles to best cover your interests.</p> <p>As for a first project, <a href="http://en.wikipedia.org/wiki/Self-organizing_map" rel="nofollow">Kohonen maps</a> are interesting for <a href="http://en.wikipedia.org/wiki/Category_theory" rel="nofollow">categorization</a>: find hidden relationships in your music collection, <a href="http://robocode.sourceforge.net/" rel="nofollow">build a smart robot</a>, or solve the <a href="http://netflixprize.com/" rel="nofollow">Netflix prize</a>.</p> http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/479009#479009 5 Answer by Chad Okere for What are some good resources for learning about Neural Networks? Chad Okere 2009-01-26T07:02:12Z 2009-01-26T07:07:55Z <p>Neural Networks are kind of declasse these days. Support Vector Machines and kernel methods are better for more classes of problems then back propagation. Neural networks and genetic algorithms capture the imagination of people who don't know much about modern machine learning but they are not state of the art.</p> <p>If you want to learn more about AI/Machine learning, I recommend buying and reading Peter Norvig's <a href="http://rads.stackoverflow.com/amzn/click/0137903952" rel="nofollow">Artificial Intelligence: A Modern Approach</a>. It's a broad survey of AI and lots of modern technology. It goes over the history and older techniques too, and will give you a more complete grounding in the basics of AI/Machine Learning.</p> <p>Neural networks are pretty easy, though. Especially if you use a genetic algorithm to determine the weights, rather then proper back propagation. </p> http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/500625#500625 4 Answer by dwf for What are some good resources for learning about Neural Networks? dwf 2009-02-01T11:21:01Z 2009-02-01T11:21:01Z <p>First of all, give up any notions that artificial neural networks have anything to do with the brain but for a passing similarity to networks of biological neurons. Learning biology won't help you effectively apply neural networks; learning linear algebra, calculus, and probability theory will. You should at the very least make yourself familiar with the idea of basic differentiation of functions, the chain rule, partial derivatives (the gradient, the Jacobian and the Hessian), and understanding matrix multiplication and diagonalization. </p> <p>Really what you are doing when you train a network is optimizing a large, multidimensional function (minimizing your error measure with respect to each of the weights in the network), and so an investigation of techniques for nonlinear numerical optimization may prove instructive. This is a widely studied problem with a large base of literature outside of neural networks, and there are plenty of lecture notes in numerical optimization available on the web. To start, most people use simple <a href="http://en.wikipedia.org/wiki/Gradient_descent" rel="nofollow">gradient descent</a>, but this can be much slower and less effective than more nuanced methods like </p> <p>Once you've got the basic ideas down you can start to experiment with different "squashing" functions in your hidden layer, adding various kinds of regularization, and various tweaks to make learning go faster. See <a href="http://yann.lecun.com/exdb/publis/pdf/lecun-98b.pdf" rel="nofollow">this paper</a> for a comprehensive list of "best practices".</p> <p>One of the best books on the subject is Chris Bishop's <a href="http://rads.stackoverflow.com/amzn/click/0198538642" rel="nofollow"><em>Neural Networks for Pattern Recognition</em></a>. It's fairly old by this stage but is still an excellent resource, and you can often find used copies online for about $30. The neural network chapter in his newer book, <a href="http://research.microsoft.com/en-us/um/people/cmbishop/prml/" rel="nofollow"><em>Pattern Recognition and Machine Learning</em></a>, is also quite comprehensive. For a particularly good implementation-centric tutorial, <a href="http://www.codeproject.com/KB/library/NeuralNetRecognition.aspx" rel="nofollow">see this one on CodeProject.com</a> which implements a clever sort of network called a convolutional network, which constrains connectivity in such a way as to make it very good at learning to classify visual patterns.</p> <p>Support vector machines and other kernel methods have become quite popular because you can apply them without knowing what the hell you're doing and often get acceptable results. Neural networks, on the other hand, are huge optimization problems which require careful tuning, although they're still preferable for lots of problems, particularly large scale problems in domains like computer vision.</p> http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/521203#521203 0 Answer by graveca for What are some good resources for learning about Neural Networks? graveca 2009-02-06T17:16:03Z 2009-02-06T17:16:03Z <p>I second <em>dwf</em>'s recommendation of <strong>Neural Networks for Pattern Recognition</strong> by Chris Bishop. Although, it's perhaps not a starter text. Norvig or an online tutorial (with code in Matlab!) would probably be a gentler introduction.</p> <p>A good starter project would be OCR (Optical Character Recognition). You can scan in pages of text and feed each character through the network in order to perform classification. (You would have to train the network first of course!). </p> http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/604105#604105 0 Answer by Gamecat for What are some good resources for learning about Neural Networks? Gamecat 2009-03-02T21:38:41Z 2009-03-02T21:38:41Z <p>Two books that where used during my study:</p> <p>Introductional course: <a href="http://rads.stackoverflow.com/amzn/click/1850321671" rel="nofollow">An introduction to Neural Computing by Igor Aleksander and Helen Morton.</a></p> <p>Advanced course: <a href="http://rads.stackoverflow.com/amzn/click/0201093553" rel="nofollow">Neurocomputing by Robert Hecht-Nielsen</a></p> http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/682409#682409 0 Answer by chaos for What are some good resources for learning about Neural Networks? chaos 2009-03-25T16:37:21Z 2009-03-25T16:37:21Z <p>I found Fausett's <a href="http://rads.stackoverflow.com/amzn/click/0133341860" rel="nofollow">Fundamentals of Neural Networks</a> a straightforward and easy-to-get-into introductory textbook.</p> http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/1268920#1268920 0 Answer by SharkTime for What are some good resources for learning about Neural Networks? SharkTime 2009-08-12T21:45:06Z 2009-08-12T21:45:06Z <p>For better understanding of neural networks I recommend free software:</p> <p><a href="http://www.sharktime.com/us_SharkyNeuralNetwork.html" rel="nofollow">Sharky Neural Network - Neural networks in action</a></p> <p>There are many network structures available. You can see neural network learning progress like a movie - live view. SNN is very interesting software.</p>