Intermediate commmit, close to finishin the results

This commit is contained in:
2025-11-03 17:36:50 +01:00
parent 1f036a0ff0
commit 2d7af415f6
16 changed files with 372 additions and 64 deletions
+2 -4
View File
@@ -2529,7 +2529,7 @@
},
{
"cell_type": "code",
"execution_count": 18,
"execution_count": null,
"id": "c94858f9",
"metadata": {},
"outputs": [
@@ -2546,7 +2546,6 @@
],
"source": [
"sns.heatmap(cm, annot=True, fmt='d')\n",
"plt.title(\"Confusion Matrix\")\n",
"plt.xlabel(\"Predicted Label\")\n",
"plt.ylabel(\"True Label\")\n",
"plt.tight_layout()\n",
@@ -2556,7 +2555,7 @@
},
{
"cell_type": "code",
"execution_count": 19,
"execution_count": null,
"id": "66af4e3e",
"metadata": {},
"outputs": [
@@ -2574,7 +2573,6 @@
"source": [
"sns.lineplot(x=fpr, y=tpr)\n",
"plt.plot([0, 1], [0, 1], linestyle='--', color='gray')\n",
"plt.title(\"ROC Curve\")\n",
"plt.xlabel(\"False Positive Rate\")\n",
"plt.ylabel(\"True Positive Rate\")\n",
"plt.tight_layout()\n",