edwinb-ai / LeastSquaresSVM

A Least Squares Support Vector Machine implementation in pure Julia
https://edwinb-ai.github.io/LeastSquaresSVM/dev/
MIT License
1 stars 1 forks source link

Large-scale training #33

Open edwinb-ai opened 3 years ago

edwinb-ai commented 3 years ago

The LSSVMs can handle thousand and even million sample datasets. But a special method must be implemented.

Fixed-sized LSSVM

The basic idea of the Fixed-sized algorithm is to employ low-rank approximations and an active selection of the support vectors by means of information theory. The full algorithm can be read on the book. Note that this is also a form of pruning, so it can be used as both for pruning and for large-scale training and prediction.