vote up 14 vote down star
9

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?

flag

30% accept rate

6 Answers

vote up 16 vote down check

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

"The most interesting problems, the task of feature discovery for example, are not ones which Gaussian processes will solve. But maybe multilayer perceptrons can't solve them either."

However, Kidney magazine suggests that

"In conclusion, although we understand that for special problems the ANN may still yield reasonable results, we argue that in general (from a theoretical perspective) and in particular (for the considered case study) support vector machine indeed outperform ANN."

Finally: www.cs.umu.se/education/examina/Rapporter/MichalAntkowiak.pdf

The Fig. 4.3 presents a comparison of the best results achieved by each method. It appears that much better results in classification were obtained using ANN than SVM. It seems also that ANNs are more resistant to insufficient data amount, because even for small set of Melanoma Maligna pictures results were satisfactory. That cannot be said about SVM, which had a problem with classification of above mentioned disease and mislead it with Melanocytic Nevus.

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"

link|flag
vote up 9 vote down

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.

link|flag
vote up 5 vote down

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.

link|flag
1  
I certainly hope my downvoter (and upvoters on Alex Fort's answer, for that matter) has written a neural network attempting to solve a non-trivial problem. Ever. – chaos Mar 25 at 20:07
1  
(-1) Your answer amounts to 'We no longer need stairs, we have elevators' Sometimes, the simpler, earlier methodology may fulfill your needs just fine. – devinb Mar 25 at 20:07
1  
That's true if the earlier methodology actually is simpler. Backpropagation neural networks being replaced by support vector machines is more like vacuum tubes being replaced by transistors than it is like your example. – chaos Mar 25 at 20:08
1  
Yeah, I agree that my analogy wasn't perfect. I was simply saying that you've written off every case. And you did it using the 'works better' phrase, which is pretty magical. It implies that another solution 'worked better' for you, which means in your case, you shouldn't use Neural Networks. – devinb Mar 25 at 20:11
1  
Neural networks are indeed very complicated and the outcome doesn't make up for it. Most pattern recognition people don't like NN, while SVM is very commonly used today. I would say chaos has a valid point. – ypnos Mar 25 at 20:11
show 14 more comments
vote up 5 vote down

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?

link|flag
I agree. The "publish or perish syndrome" and some subtleties in the social phenomena around peer review process accentuate these drawbacks. At least this is my outsider perception. – MaD70 Oct 17 at 1:15
vote up 3 vote down

Strange conclusion which reminds me an historical precedent, the perceptron's case (the perceptron is a simple kind of artificial neural network):

... in 1969, Minsky co-authored with Seymour Papert, Perceptrons: An Introduction to Computational Geometry. In this work they attacked the limitations of the perceptron.
They showed that the perceptron could only solve linearly separable functions. Of particular interest was the fact that the perceptron still could not solve the XOR and NXOR functions. Likewise, Minsky and Papert stated that the style of research being done on the perceptron was doomed to failure because of these limitations. This was, of course, Minsky’s equally ill-timed remark. As a result, very little research was done in the area until about the 1980’s§. ...

§ 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):

... Early RNNs of the 1990s could not learn to look far back into the past. Their problems were first rigorously analyzed on Schmidhuber's RNN long time lag project by his former PhD student Hochreiter (1991). A feedback network called "Long Short-Term Memory" (LSTM, Neural Comp., 1997) overcomes the fundamental problems of traditional RNNs, and efficiently learns to solve many previously unlearnable tasks involving: ...

link|flag
vote up 1 vote down

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"

link|flag

Your Answer

Get an OpenID
or

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