/Support-Vector-Machines

Implements Linear SVM algorithm from scratch in python.

Primary LanguagePython

Support-Vector-Machines

This repo implements Support Vector Machine(SVM) machine learning algorithm from scratch in Python.

Please read this blog that goes with the code.

Installations

# Create and activate new virtual environment (optional)
python -m venv svm-venv
source svm-venv/bin/activate

# To deactivate virtual environment knn
deactivate

# Install requirements
pip install -r requirements.txt