Closed JYLFamily closed 3 years ago
Hi @JYLFamily, logistic calibration aka Platt scaling, as well as temperature scaling, are both defined for the logits of the sigmoid - that is the raw output of a neural network before applying the activation function. Therefore, it is necessary to compute the inverse activation functions to obtain the logits.
@fabiankueppers, just to confirm, all methods in the library expect confidences and not logits, correct?
@jwitos exactly
Hi Fabian Küppers when use LogisticCalibration() for binary class, why use _inverse_sigmoid(X) rather than X.
Thanks