Skip to content

Commit

Permalink
tutorial svm
Browse files Browse the repository at this point in the history
  • Loading branch information
bezzazi abir committed Aug 24, 2022
1 parent fc5f812 commit 7d5cf85
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions wiki/Tutorials/support-vector-machines-tutorial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Support Vector Machines


_If you don't have the library installed, you can refer to: [Getting Started page](../GettingStarted/GettingStarted.md)_

Support Vector Machines (abbreviated as SVM) are supervised learning algorithms that can be used for classification and regression problems. They are based on the idea of finding a hyperplane that best separates the features into two classes.

We will use data from the [Wisconsin breast cancer diagnostic dataset](https://www.kaggle.com/code/buddhiniw/breast-cancer-prediction) to train the machine learning to be able to predict if someone has or not diabetes based in several parameters.

The Wisconsin dataset contains 32 parameters of a breast cancer, like its radius mean, its area mean, its smoothness mean, etc and as an output the dignosis of the cancer wether it's begnine ou maligne.

First, we will load the dataset. Then, normalizing the data, to split between test and training datasets. After that, we will train the SVM model and finally measuring its performance by predicting on test data.

0 comments on commit 7d5cf85

Please sign in to comment.