I was told I had to direct my machine learning questions to this site. So here it goes.
I'm trying to do Multiclass classification with SVM. I have 7 classes. Now I was wondering if the following is possible. I'm thinking of creating 7 SVMs for 1 vs all approach. Am i allowed to create 1 kind of feature vector per class?
So e.g. Class 1 vs rest ==> Use type feature vector 1 (designed for class 1) Class 2 vs rest ==> Use type feature vector 2 (designed for class 2) Class 3 vs rest ==> Use type feature vector 3 (designed for class 3)
And then assign the class-label with the highest confidence (probability), to the datapoint.
Is this cheating ? Or is this allowed ? Is this common practice ?
L * Fclassifiers, whereLis the number of classes andFis the number of possible feature vector formulations. Because they are the same in your case, this isL^2. Then to finish, you pick the class by doing what? – lollercoaster May 30 '13 at 17:31