Skip to content
Advertisement

trying to callibrate keras model

I’m trying to calibrate my CNN model by Sklearn implementation CalibratedClassifierCV, tried to wrap it as KerasClassifier and to override the predict function but without success. someone could say me what I did wrong? this is the model code:

JavaScript

this is me trying to calibrate it :

JavaScript

the output :

JavaScript

valX_cnn and val_y_cnn are of type np.array.

tried even to override the method:

JavaScript

Advertisement

Answer

The problem is because predict_proba from KerasClassifier requires x as input while predict_proba method from sklearn accepts X as input argument (note the difference: X is not x).

You can simply overdrive the problem wrapping KerasClassifier into a new class to correct the predict_proba method.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement