I have 4 labelled groups which I want to classify using SVM.
Class-A, Class-B, Class-C, Class-D
Now If I need to train my classifier to recognize I will copy all the text from A,B,C,D into a file "A-against-all
". SImilarly for B,C & D as
"B-against-all" CLass B :1 , Rest all :-1
"C-against-all" CLass C :1 , Rest all :-1
"D-against-all" CLass D :1 , Rest all :-1
Now if I run SVM on "A-against-all
" then I get a classifier as output.
Similarly I get three more classifiers for B,C & D.
Now my questions is this : - How do I integrate these 4 classifiers so as to operate in unison ?