/algorithms

My implementation of various algorithms. Written in Rust, with an interface to Python.

Primary LanguageRustMIT LicenseMIT

algorithms

My implementation of various algorithms, in Rust.

Running examples

Each implemented algorithm contains at least one example. Examples can be run with the command cargo run --release --example <example>.

The library used for plotting is gnuplot and needs to be installed on the system for the examples that draw plots.

Algorithms implemented

Below is a list of all the algorithms currently implemented in this repository.

KDE is a non-parameteric method for estimating the density over a data distribution. This implementation uses a Gaussian kernel.