Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion support_vector_machine_lesson.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@
},
"outputs": [],
"source": [
"w = svm_sgd_plot(X,y)\n",
"for d, sample in enumerate(X):\n",
" # Plot the negative samples\n",
" if d < 2:\n",
Expand Down Expand Up @@ -275,7 +276,7 @@
},
"outputs": [],
"source": [
"w = svm_sgd_plot(X,y)\n",

"#they decrease over time! Our SVM is learning the optimal hyperplane"
]
},
Expand Down