From 0150ce7cf7002f1616918d6c57ae47766d5b6167 Mon Sep 17 00:00:00 2001 From: "Carlos A. Iglesias" Date: Thu, 22 Feb 2024 12:23:08 +0100 Subject: [PATCH] Update 3_7_SVM.ipynb Updated formatted table --- ml2/3_7_SVM.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ml2/3_7_SVM.ipynb b/ml2/3_7_SVM.ipynb index b569717..45f1ce3 100644 --- a/ml2/3_7_SVM.ipynb +++ b/ml2/3_7_SVM.ipynb @@ -351,10 +351,10 @@ "We can obtain more information from the confussion matrix and the metric F1-score.\n", "In a confussion matrix, we can see:\n", "\n", - "||**Predicted**: 0| **Predicted: 1**|\n", - "|---------------------------|\n", - "|**Actual: 0**| TN | FP |\n", - "|**Actual: 1**| FN|TP|\n", + "| |**Predicted**: 0| **Predicted: 1**|\n", + "|-------------|----------------|-----------------|\n", + "|**Actual: 0**| TN | FP |\n", + "|**Actual: 1**| FN | TP |\n", "\n", "* **True negatives (TN)**: actual negatives that were predicted as negatives\n", "* **False positives (FP)**: actual negatives that were predicted as positives\n",