RoboticsClubIITJ / ML-DL-implementation

An implementation of ML and DL algorithms from scratch in python using nothing but NumPy and Matplotlib.
BSD 3-Clause "New" or "Revised" License
47 stars 68 forks source link

Added Linear Support Vector Machine Classifier #185

Closed iamayushanand closed 2 years ago

iamayushanand commented 2 years ago

References to other Issues or PRs or Relevant literature

Fixes #5

Brief description of what is fixed or changed

Linear Support Vector Classification model has been added in the models.py file. The SVM loss objective has been added in the loss_func.py file. Relevant Example has been added in the Examples/svm_classification_example.py file.

Figure_1