1
0
mirror of https://github.com/gsi-upm/sitc synced 2024-12-22 03:38:13 +00:00

Update 3_7_SVM.ipynb

Fixed typo in a comment
This commit is contained in:
Carlos A. Iglesias 2022-03-17 17:58:09 +01:00 committed by GitHub
parent 2c7c9e58e0
commit 0a9cd3bd5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)"
]
},