# LSSVM **Repository Path**: maoxiaomeng/LSSVM ## Basic Information - **Project Name**: LSSVM - **Description**: Python implementation of Least Squares Support Vector Machine for classification on CPU (NumPy) and GPU (PyTorch). - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-01-09 - **Last Updated**: 2025-01-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Overview This repository contains a Jupyter Notebook with a python implementation of **Least Squares Support Vector Machine (LSSVM)** on **CPU** and **GPU**, you can find a bit of theory and the implementation on it. For a more enjoyable view of the notebook: https://nbviewer.jupyter.org/github/RomuloDrumond/LSSVM/blob/master/LSSVM.ipynb To install dependencies run `pip install -r requirements.txt` on the main directory. ### Important libraries used: * Pandas, for loading and preprocessing of the data; * Sklearn, for scaling features; * Numpy, for matrices computation on CPU version; * PyTorch, for matrices computations on GPU version; * Scipy, for the fast `cdist` function;