背景 liblinearのlogistic regression の性能がどうもおかしい。 そこでソースを見てみると、 double label=predict_values(model_, x, prob_estimates); for(i=0;i < nr_w;i++) prob_estimates[i]=1/(1+exp(-prob_estimates[i])); if(nr_class==2) // for binary classification prob_estimates[1]=1.-prob_estimates[0]; else { double sum=0; for(i=0; i < nr_class; i++) sum+=prob_estimates[i]; for(i=0; i < nr_class; i++) prob_estimates[i]=prob_esti