I am new to machine learning. I am familiar with SVM , Neural networks and GA. I'd like to know the best technique to learn for classifying pictures and audio. SVM does a decent job but takes a lot of time. Anyone know a faster and better one? Also I'd like to know the fastest library for SVM.
|
|
Your question is a good one, and has to do with the state of the art of classification algorithms, as you say, the election of the classifier depends on your data, in the case of images, I can tell you that there is one method called Ada-Boost, read this and this to know more about it, in the other hand, you can find lots of people are doing some researh, for example in Gender Classification of Faces Using Adaboost [Rodrigo Verschae,Javier Ruiz-del-Solar and Mauricio Correa] they say: "Adaboost-mLBP outperforms all other Adaboost-based methods, as well as baseline methods (SVM, PCA and PCA+SVM)" Take a look at it. |
|||||||||||
|
|
If your main concern is speed, you should probably take a look at VW and generally at stochastic gradient descent based algorithms for training SVMs. |
|||
|
|
|
if the number of features is large in comparison to the number of the trainning examples then you should go for logistic regression or SVM without kernel if the number of features is small and the number of training examples is intermediate then you should use SVN with gaussian kernel is the number of features is small and the number of training examples is large use logistic regression or SVM without kernels . that's according to the stanford ML-class . |
|||
|
|
|
For such task you may need to extract features first. Only after that classification is feasible. |
|||||
|
|
I think feature extraction and selection is important. For image classification, there are a lot of features such as raw pixels, SIFT feature, color, texture,etc. It would be better choose some suitable for your task. I'm not familiar with audio classication, but there may be some specturm features, like the fourier transform of the signal, MFCC. The methods used to classify is also important. Besides the methods in the question, KNN is a reasonable choice, too. Actually, using what feature and method is closely related to the task. |
|||
|
|