You are using sklearn 0.13 right? I am pretty sure that it was not possible to grid search vs ROC AUC back then. In master it's possible to grid search using ROC AUC using:
GridSearchCV(clf, params_grid, scoring='roc_auc').fit(X, y) -- Olivier ------------------------------------------------------------------------------ This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
