Skip to content

Commit e46f1e1

Browse files
authored
Support Vector Classifier using breast cancer data
1 parent ac201be commit e46f1e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Support_Vector_Machine_Practice.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"In machine learning, support vector machines (SVMs, also support vector networks) are supervised learning models with associated learning algorithms that analyze data used for classification and regression analysis. Given a set of training examples, each marked as belonging to one or the other of two categories, an SVM training algorithm builds a model that assigns new examples to one category or the other, making it a **non-probabilistic binary linear classifier** (although methods such as Platt scaling exist to use SVM in a probabilistic classification setting). An SVM model is a representation of the examples as points in space, mapped ***so that the examples of the separate categories are divided by a clear gap that is as wide as possible***. New examples are then mapped into that same space and predicted to belong to a category based on which side of the gap they fall. This gap is also called maximum margin and the SVM classifier is called ***maximum margin clasifier***.\n",
1010
"\n",
1111
"In addition to performing linear classification, SVMs can efficiently perform a non-linear classification using what is called the kernel trick, implicitly mapping their inputs into high-dimensional feature spaces.\n",
12-
"![SVM-1](/Images/SVM-1.png)"
12+
"![SVM-1](./Images/SVM-1.png)"
1313
]
1414
},
1515
{

0 commit comments

Comments
 (0)