Top "Roc" questions

ROC (Receiver Operating Characteristic) curve is a graphical plot comparing the true positive and false positive rates of a classifier as its discrimination threshold is varied.

GridSearchCV has no attribute grid.grid_scores_

tried grid.cv_results_ didnt correct problem from sklearn.model_selection import GridSearchCV params = { 'decisiontreeclassifier__max_depth': [1, 2], 'pipeline-1__clf__C': [0.001, 0.1, 100.0] } …

python scikit-learn roc gridsearchcv
ROC curves for Random Forest fit objects using pROC in R, to use positve or negative "votes" as predictor

Obese is a binary response var with 1 indicating obese and 0 not obese. Weight is a continuous predictor. using a RF …

r random-forest roc proc-r-package
What are the MATLAB 'perfcurve' Roc Curve Parameters?

I have been using the LibSVM classifier to classify between 3 different classes - labeled 2, 1, -1 I'm trying to use MATLAB …

matlab parameters libsvm roc
DecisionTreeClassifier predict_proba returns 0 or 1

I m trying to use the decision tree classified to identify two classes (renamed 0 and 1) based on certain parameters. I …

python decision-tree roc sklearn-pandas
not enough distinct predictions to compute area under roc

I'm tying to calculate the AUC using auc(roc(predictions, labels)), where labels is a numeric vector of 1 (x15) and 0 (…

r roc auc