From 186d2cc4213bef3b11ac366e4ab82729b82c837d Mon Sep 17 00:00:00 2001 From: Siddharths8212376 <40669232+Siddharths8212376@users.noreply.github.com> Date: Tue, 4 Jun 2019 20:11:38 +0530 Subject: [PATCH] Adding a show function which was not there before.. --- support_vector_machine_lesson.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/support_vector_machine_lesson.ipynb b/support_vector_machine_lesson.ipynb index 817490d..8e277b5 100644 --- a/support_vector_machine_lesson.ipynb +++ b/support_vector_machine_lesson.ipynb @@ -122,7 +122,8 @@ "\n", "# Print a possible hyperplane, that is seperating the two classes.\n", "#we'll two points and draw the line between them (naive guess)\n", - "plt.plot([-2,6],[6,0.5])" + "plt.plot([-2,6],[6,0.5])\n", + "plt.show()" ] }, {