I use the LogisticRegression() method in scikit-learn for a highly unbalanced dataset. I even included the class_weight function in auto .
I know that in logistic regression it should be possible to find out what threshold value for a certain pair of classes.
Is it possible to find out what threshold value is in each of the One-vs-All classes developed by the LogisticRegression() method?
I did not find anything on the documentation page.
Does it default to 0.5 as a threshold for all classes, regardless of parameter values?
scikit-learn machine-learning classification logistic-regression
London guy
source share