From 509e1f8f9a747beffa514b1817692132dcec2c99 Mon Sep 17 00:00:00 2001 From: botbikamordehai2-sketch Date: Thu, 28 May 2026 05:56:16 +0000 Subject: [PATCH] fix: correct truncated roc_curve assignment in generate_plots (closes #34) --- alphapy/plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alphapy/plots.py b/alphapy/plots.py index dc91f56..dc5e0d4 100644 --- a/alphapy/plots.py +++ b/alphapy/plots.py @@ -164,7 +164,7 @@ def generate_plots(model, partition): confusion_matrix = model.specs['confusion_matrix'] importances = model.specs['importances'] learning_curve = model.specs['learning_curve'] - roc_curve = model.specs['roc_curve'] + roc_curve = model.specs['roc_curve']l.specs['roc_curve'] # Generate plots