I am using VW to try to predict multi classes. The strangest part is that it doesn't matter which parameters I use, the result is always the same.
Should that happen, maybe because of my data?
Details:
Around 90k lines of data. A line of the data:
1 2334225|SUBDEPT "D1SUB1" "D2SUB1" |DEPT "DEPT1" "DEPT2" |SCANCODE "11223442" "65434533543" |WDAY Friday |AMTBOUGHT 2
Its a multiclass problem,so the command line is:
vw --ect 38 ../Processed/train.vw.txt --loss_function logistic --link=logistic
The single parameter that changes something is from --ect to --oaa. I have tried adding the following, but none changes the final validation values:
- -c -k --passes 20 (goes until 8)
- --l1 or --l2
- --power_t
- --ignore D or --ignore d (or s or su...)
the results are always
average loss = 0.911153 h
Is there something that I am missing here?