I'm using VW 7.4 to do some binary classification:
cat train | vw -k --binary --cache_file cache -f model --compressed --passes 10 --loss_function hinge
At test time, I can access the scores using:
cat test | vw -t -i model -p pred
What I don't get is that, if I add --bootstrap 4
to training, then the resulting pred
file contains 3 columns. I don't know which of them corresponds to the scores of the prediction.