1
0
mirror of https://github.com/gsi-upm/sitc synced 2025-01-08 20:11:27 +00:00

Compare commits

..

No commits in common. "0a9cd3bd5e07e1a91a827f411cbed7987d8ea7b2" and "f0278aea336a6b81159db0f53a5a705e358c5a34" have entirely different histories.

View File

@ -222,7 +222,7 @@
"kernel = types_of_kernels[0]\n",
"gamma = 3.0\n",
"\n",
"# Create SVM model\n",
"# Create kNN model\n",
"model = SVC(kernel=kernel, probability=True, gamma=gamma)"
]
},
@ -418,7 +418,7 @@
"plt.ylim([0.0, 1.0])\n",
"plt.title('ROC curve for Titanic')\n",
"plt.xlabel('False Positive Rate (1 - Recall)')\n",
"plt.ylabel('True Positive Rate (Sensitivity)')\n",
"plt.xlabel('True Positive Rate (Sensitivity)')\n",
"plt.grid(True)"
]
},