According to an answer from here, artificial neural networks are obsoleted by Support Vector Machines, Gaussian Processes, generative and descriptive models. What is your opinion?
|
9
|
|
|
|
|
|
From this guy's paper here: http://www.inference.phy.cam.ac.uk/mackay/BayesGP.html ('Gaussian Processes - A Replacement for Supervised Neural Networks?') he states
However, Kidney magazine suggests that
Finally: www.cs.umu.se/education/examina/Rapporter/MichalAntkowiak.pdf
So, like pretty much everything in CS -- it's a matter of trade-offs and not is this the "best" but the "best for your particular problem" |
||
|
|
|
|
Neural networks are one method of "machine learning." Just because there are new technologies, doesn't mean the older ones are obsolete. There are quite a few applications for them, including risk assessment for financial businesses. They're quite good at detecting patterns, so people still use them in applications that need that. I've found them useful for risk assessment myself, using them for determining whether a given customer would be a high risk for the company based on a large amount of previous training data. There may certainly be better methods for doing something like that, but I found a NN to be a perfectly acceptable solution, with good results. |
|||
|
|
|
|
Yes, they are. Neural networks' problems with getting stuck in local minima (i.e. finding a solution that's better than the one to the left, and better than the one to the right, and having no way of knowing that there's a far better solution a good distance off) are inherent to the methodology, and the effort required to even partially compensate for them is considerably greater than it takes to just use a methodology that works better. |
||||||||||||||||||||
|
|
|
I think the phrase 'no longer fashionable' is more appropriate than 'obselete'. The fact is that the research community is just as susceptible to hype and fashion as any other community. Neural networks were hyped a lot several years ago as the solution to all life's problems and now are suffering the inevitable backlash. However, there is some very interesting newer research being done in 'deep learning' which is basically neural networks with lots of hidden layers (as far as I can tell). Maybe it's time for a neural network comeback? |
||
|
|
|
Strange conclusion which reminds me an historical precedent, the perceptron's case (the perceptron is a simple kind of artificial neural network):
§ Minsky and Papert are two pioneers of AI, so their opinion was much considered in that time. This was the classic symbolic vs subsymbolic debate in Artificial Intelligence. In fact such limitation was easy to overcome simply by adding more than one layer of nodes (artificial neurons). The moral of the story is that a technology can overcome its limitations even with a modest improvement. Case in point (with a not so modest improvment) Jürgen Schmidhuber's and colleagues recent work on Recurrent Neural Networks (RNN):
|
|||
|
|
|
|
A good reference to NN and much more is Andrew Moore's tutorials "on many aspects of statistical data mining, including the foundations of probability, the foundations of statistical data analysis, and most of the classic machine learning and data mining algorithms" |
||
|
|
