From 0a9cd3bd5e07e1a91a827f411cbed7987d8ea7b2 Mon Sep 17 00:00:00 2001 From: "Carlos A. Iglesias" Date: Thu, 17 Mar 2022 17:58:09 +0100 Subject: [PATCH] Update 3_7_SVM.ipynb Fixed typo in a comment --- ml2/3_7_SVM.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ml2/3_7_SVM.ipynb b/ml2/3_7_SVM.ipynb index ba12614..a24939e 100644 --- a/ml2/3_7_SVM.ipynb +++ b/ml2/3_7_SVM.ipynb @@ -222,7 +222,7 @@ "kernel = types_of_kernels[0]\n", "gamma = 3.0\n", "\n", - "# Create kNN model\n", + "# Create SVM model\n", "model = SVC(kernel=kernel, probability=True, gamma=gamma)" ] },