Use more descriptive label names
This commit is contained in:
parent
c5a147e5df
commit
bed9f1d0e9
Binary file not shown.
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 87 KiB |
|
@ -98,15 +98,15 @@ def plot_all_figures(results):
|
||||||
plot_individual_figure(
|
plot_individual_figure(
|
||||||
results,
|
results,
|
||||||
type="roc",
|
type="roc",
|
||||||
x_axis="fpr",
|
x_axis="False positive rate",
|
||||||
y_axis="tpr",
|
y_axis="True positive rate",
|
||||||
fig_title="ROC AUC curve",
|
fig_title="ROC AUC curve",
|
||||||
)
|
)
|
||||||
plot_individual_figure(
|
plot_individual_figure(
|
||||||
results,
|
results,
|
||||||
type="confusion_matrix",
|
type="confusion_matrix",
|
||||||
x_axis="fpr",
|
x_axis="Predicted values",
|
||||||
y_axis="tpr",
|
y_axis="Real values",
|
||||||
fig_title="Confusion Matrix",
|
fig_title="Confusion Matrix",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue