- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
Hi,
Are there currently any methods implemented in the Python API (in particular for the SVM model class, or for classification models in general) which correspond to the .decision_function() method of the Scikit-Learn svm.SVC model class, or the .predict_proba() method of many Scikit-Learn models (and the multiclass.OneVsRestClassifier class, which accepts any estimator with a .fit() and one of .decision_function() or .predict_proba() methods)?
For context, I would like to create ROC curves from the prediction results of my model - but to do so requires not just a predicted class, but some measure of strength of the prediction (either the transformed value under the decision function, or the predicted probability) to set various thresholds in order to construct that curve.
Thanks,
Matt
- Etiquetas:
- Intel® Distribution for Python*
Enlace copiado
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
decision function is currently available only for binary class SVM algorithm. The prediction results(also the distance from the hyper plane) are in fact the decision function scores(more details in this thread - https://software.intel.com/en-us/forums/intel-data-analytics-acceleration-library/topic/742985). You can plot the roc curve using these scores.
For your reference, I have updated and attached svm example code to plot roc curve.
- Suscribirse a un feed RSS
- Marcar tema como nuevo
- Marcar tema como leído
- Flotar este Tema para el usuario actual
- Favorito
- Suscribir
- Página de impresión sencilla