An open API service indexing awesome lists of open source software.

https://github.com/shilangyu/svm-from-scratch

Explanation and implementation of basic SVMs in Julia
https://github.com/shilangyu/svm-from-scratch

julia machine-learning svm

Last synced: about 1 year ago
JSON representation

Explanation and implementation of basic SVMs in Julia

Awesome Lists containing this project

README

          

# SVM from scratch in Julia

Repo including explanation and high-level derivation of the SVM method used for classification, see [github.shilangyu.dev/SVM-from-scratch](https://github.shilangyu.dev/SVM-from-scratch). Additionally implementations of 3 different SVMs models can be found in Julia files.

## Linear soft margin SVM

![](animations/linear_soft_margin.gif)

## Non linear RBF kernel SVM

![](animations/non_linear.gif)

> _training does not look continuous because the optimization method takes harsh steps which converge quickly_