Hi!
So I was trying plotting a multiclass ROC following this reference
However, the model I used is already trained and wrapped with CalibratedClassifierCV from sklearn because I need to calibrate the predict_proba in my model. But it returns 'CalibratedClassifierCV' object has no attribute 'target_type_'
Hi! So I was trying plotting a multiclass ROC following this reference
However, the model I used is already trained and wrapped with
CalibratedClassifierCV
from sklearn because I need to calibrate thepredict_proba
in my model. But it returns'CalibratedClassifierCV' object has no attribute 'target_type_'
Here's the code I use:
Did I miss something?