Is it possible to train a multiclass (multinomial) linear classification model with Vowpal Wabbit Library?
I tried to use --oaa with --loss_function squared, but it seems that the default loss function for --oaa is logistic.
I am using rcv1.multiclass as input.
One Solution:
I can create multiple version of the data as follows:
Version i: make all the labels zero except class I
Then I can train multiple binary classifications for each version of data. Finally, I can feed the test data to all the classifier and apply an argmax. Is there any better (automated) solution?