https://github.com/balaka-18/svm-series
A series of notebooks on Support Vector Machine algorithm
https://github.com/balaka-18/svm-series
binary-classification supervised-learning svm svm-training
Last synced: 8 months ago
JSON representation
A series of notebooks on Support Vector Machine algorithm
- Host: GitHub
- URL: https://github.com/balaka-18/svm-series
- Owner: BALaka-18
- License: mit
- Created: 2020-07-12T13:05:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-19T22:50:22.000Z (almost 6 years ago)
- Last Synced: 2025-06-29T10:39:22.521Z (11 months ago)
- Topics: binary-classification, supervised-learning, svm, svm-training
- Language: Jupyter Notebook
- Homepage:
- Size: 6.72 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SVM Series
A series of notebooks on Support Vector Machine algorithm
Notebook 1 : Notebook on Support Vector Machine(SVM) Geometric intuition : which is a better classifying plane / line ?
________________________________________________________________________________________________________________________________________________________________________________
Notebook 2 : Notebook on applying SVM on the Indian Diabetes Dataset to find the best value of C for which accuracy is the highest.

________________________________________________________________________________________________________________________________________________________________________________
Notebook 3 : Notebook to visualize the decision boundary hyperplane of SVM algorithm, for both linearly separable and non-linearly separable data.
LINEARLY SEPARABLE SAMPLE DATA :

NON-LINEARLY SEPARABLE SAMPLE DATA :
1. Linear kernel

2. Polynomial kernel with default degree = 3

3. Polynomial kernel with degree = 2

4. Rbf kernel

5. Gaussian RBF kernel in 3D space

________________________________________________________________________________________________________________________________________________________________________________
Notebook 4 : Notebook to find out the best hyperparameters for a SVC working on the very popular Breast Cancer dataset

________________________________________________________________________________________________________________________________________________________________________________