Friedrich : Gaussian Process Regression

This library implements Gaussian Process Regression, also known as Kriging, in Rust. Our goal is to provide a building block for other algorithms (such as Bayesian Optimization).

Gaussian processes have both the ability to extract a lot of information from their training data and to return a prediction and an uncertainty value on their prediction. Furthermore, they can handle non-linear phenomena, take uncertainty on the inputs into account, and encode a prior on the output.

All of those properties make it an algorithm of choice to perform regression when data is scarce or when having uncertainty bars on the ouput is a desirable property.

However, the o(n^3) complexity of the algorithm makes the classic implementation unsuitable for large datasets.

Functionalities

This implementation lets you:

(See the todo file to get up-to-date informations on current developements.)

Code sample

```rust use friedrich::gaussian_process::GaussianProcess;

// trains a gaussian process on a dataset of one-dimensional vectors let traininginputs = vec![vec![0.8], vec![1.2], vec![3.8], vec![4.2]]; let trainingoutputs = vec![3.0, 4.0, -2.0, -2.0]; let gp = GaussianProcess::default(traininginputs, trainingoutputs);

// predicts the mean and variance of a single point let input = vec![1.]; let mean = gp.predict(&input); let var = gp.predict_variance(&input); println!("prediction: {} ± {}", mean, var.sqrt());

// makes several prediction let inputs = vec![vec![1.0], vec![2.0], vec![3.0]]; let outputs = gp.predict(&inputs); println!("predictions: {:?}", outputs);

// samples from the distribution let newinputs = vec![vec![1.0], vec![2.0]]; let sampler = gp.sampleat(&newinputs); let mut rng = rand::threadrng(); println!("samples: {:?}", sampler.sample(&mut rng)); ```

Inputs

Most methods of this library can currently work with the following input -> ouput pairs :

A trait is provided to add your own pairs.

Why call it Friedrich ?

Gaussian Process are named after the Gaussian distribution which is itself named after Carl Friedrich Gauss.