You're looking at Less Wrong's discussion board. This includes all posts, including those that haven't been promoted to the front page yet. For more information, see About Less Wrong.

is4junk comments on Open thread, Mar. 23 - Mar. 31, 2015 - Less Wrong Discussion

6 Post author: MrMind 23 March 2015 08:38AM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (181)

You are viewing a single comment's thread. Show more comments above.

Comment author: is4junk 27 March 2015 01:31:20AM 1 point [-]

So if humanity had had no biological neural networks to steal the general idea and as proof of feasibility, would machine learning & AI be far behind where they are now?

NNs connection to biology is very thin. Artificial neurons don't look or act like regular neurons at all. But as a coined term to sell your research idea its great.

NNs are popular now for their deep learning properties and ability to learn features from unlabeled data (like edge detection).

Comparing NNs to SVMs isn't really fair. You use the tool best for the job. If you have lots of labeled data you are more likely to use an SVM. It just depends on what problem you are being asked so solve. And of course you might feed an NNs output into an SVM or vice versa.

As for major achievements - NNs are leading for now because 1) most of the world's data is unlabeled and 2) automated feature discovery (deep learning) is better then paying people to craft features.

Comment author: gwern 27 March 2015 02:38:32AM 3 points [-]

NNs connection to biology is very thin. Artificial neurons don't look or act like regular neurons at all.

I am well aware of that. Nevertheless, as a historical fact, they were inspired by real neurons, they do operate more like real neurons than do, say, SVMs or random forests, and this is the background to my original question.

If you have lots of labeled data you are more likely to use an SVM.

ImageNet is a lot of labeled data, to give one example.

As for major achievements - NNs are leading for now because ...

There is a difference between explaining, and explaining away. You seem to think you are doing the latter, while you're really just doing the former.

Comment author: skeptical_lurker 31 March 2015 12:13:54PM 0 points [-]

If you have lots of labeled data you are more likely to use an SVM.

SVMs are O(n^3) - if you have lots of data you shouldn't use SVMs.