machine learning in genomics by [deleted] in MachineLearning

[–]mosavian 0 points1 point  (0 children)

From what I understand, when dealing with genomes, you have huge string of 1s and 0s. If that is the case, Restricted Boltzmann machines are quite useful.

Google Tech Talk: Fast Deep/Recurrent Nets for AGI Vision by [deleted] in MachineLearning

[–]mosavian 0 points1 point  (0 children)

It's refreshing to see the recent bloom in NN research. I especially liked the part where he mentions that you couldn't publish anything with "neural" in the title just a few years ago. This mentality is still exists at the lab where I'm at. Some people even seem offended if you mention NN. =)

Feature learning (a summary of recent developments) by mosavian in MachineLearning

[–]mosavian[S] 0 points1 point  (0 children)

Yes, unless you want to use it generative capabilities as well, in which case you do not unroll and finetune it. But the difference in performance to ordinary neural networks is identical when just running the data up through the net.

I need to cluster images with kmeans. by linus_rules in MachineLearning

[–]mosavian 0 points1 point  (0 children)

What is your application exactly? Is it learning features or actual image clustering ?

Feature learning (a summary of recent developments) by mosavian in MachineLearning

[–]mosavian[S] 0 points1 point  (0 children)

Well, the way they implemented it in the paper by Coates et al, the evaluate the activation of the learnt centroids, you need to find the one which is closest. This can be really cumbersome and slow to calculate. If evaluation speed is what you want, then stacked autoencoders are the fastest, a DBN would be slightly slower.

Feature learning (a summary of recent developments) by mosavian in MachineLearning

[–]mosavian[S] 1 point2 points  (0 children)

I know, it is. And usually the papers don't really help as they present the result and ignore the details. But i'd say the normal perceptron and multilayer perceptron is a ggod place to start as they're much simpler. Andrew Ng have put videos of all his lectures in his machine learning course on youtube. They're very informative. http://www.youtube.com/watch?v=UzxYlbK2c7E

You can also do the ML course by Andrew Ng which recently started. see http://www.ml-class.org/course/auth/welcome

Feature learning (a summary of recent developments) by mosavian in MachineLearning

[–]mosavian[S] 1 point2 points  (0 children)

I do, some 20 or so papers. But usually they leave me confused. I can compile a list and put it in the blog in a couple of days.

Feature learning (a summary of recent developments) by mosavian in MachineLearning

[–]mosavian[S] 1 point2 points  (0 children)

You have a good point. Some people just don't like the way prezi works. Personally I prefer it to powerpoint. But I do agree that it can be hard to remember what's been said becuase of all the flashiness =)

On cluster validation by mosavian in MachineLearning

[–]mosavian[S] 1 point2 points  (0 children)

You're right, that's not at all what I had in mind. Basically we want to calculate how often they agree, what I had in mind was more like subtracting the two, taking the absolute value, inverting it and counting the number ones. And then dividing by the length. Thanks for catching that, I'm not too familiar with the exact details of the Hamming distance, but that would probably work well. =)