My code to plot the ROC curve,
\'\'\'
true = y_true pred = preds[:,0] fpr = dict() tpr = dict() roc_auc = dict() for i in range(2): fpr[i], tpr[i], _ =