plot_roc
Plot the Receiver Operating Characteristics Curve (ROC). The legend shows the Area Under the ROC Curve (AUC) score. Only for binary classification tasks. Read more about ROC in sklearn's documentation.
Parameters: |
models: str, sequence or None, optional (default=None)
dataset: str, optional (default="test")
title: str or None, optional (default=None)
figsize: tuple, optional (default=(10, 6))
filename: str or None, optional (default=None)
display: bool or None, optional (default=True) |
Returns: |
fig: matplotlib.figure.Figure Plot object. Only returned if display=None .
|
Example
from atom import ATOMClassifier
atom = ATOMClassifier(X, y)
atom.run(["LR", "RF", "LGB"], metric="roc_auc")
atom.plot_roc(filename="roc_curve")