All Projects → anassinator → gp

anassinator / gp

Licence: MIT license
Differentiable Gaussian Process implementation for PyTorch

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to gp

pytorch-minimal-gaussian-process
A minimal implementation of Gaussian process regression in PyTorch
Stars: ✭ 32 (+77.78%)
Mutual labels:  gaussian-processes, gaussian-process-regression
GPflow-Slim
customized GPflow with simple Tensorflow API
Stars: ✭ 17 (-5.56%)
Mutual labels:  gaussian-processes
Miscellaneous R Code
Code that might be useful to others for learning/demonstration purposes, specifically along the lines of modeling and various algorithms. Now almost entirely superseded by the models-by-example repo.
Stars: ✭ 146 (+711.11%)
Mutual labels:  gaussian-processes
Keras Gp
Keras + Gaussian Processes: Learning scalable deep and recurrent kernels.
Stars: ✭ 218 (+1111.11%)
Mutual labels:  gaussian-processes
Limbo
A lightweight framework for Gaussian processes and Bayesian optimization of black-box functions (C++-11)
Stars: ✭ 157 (+772.22%)
Mutual labels:  gaussian-processes
Stheno.jl
Probabilistic Programming with Gaussian processes in Julia
Stars: ✭ 233 (+1194.44%)
Mutual labels:  gaussian-processes
Survival Analysis Using Deep Learning
This repository contains morden baysian statistics and deep learning based research articles , software for survival analysis
Stars: ✭ 139 (+672.22%)
Mutual labels:  gaussian-processes
approxposterior
A Python package for approximate Bayesian inference and optimization using Gaussian processes
Stars: ✭ 36 (+100%)
Mutual labels:  gaussian-processes
TemporalGPs.jl
Fast inference for Gaussian processes in problems involving time. Partly built on results from https://proceedings.mlr.press/v161/tebbutt21a.html
Stars: ✭ 89 (+394.44%)
Mutual labels:  gaussian-processes
Gpytorch
A highly efficient and modular implementation of Gaussian Processes in PyTorch
Stars: ✭ 2,622 (+14466.67%)
Mutual labels:  gaussian-processes
Cornell Moe
A Python library for the state-of-the-art Bayesian optimization algorithms, with the core implemented in C++.
Stars: ✭ 198 (+1000%)
Mutual labels:  gaussian-processes
Btb
A simple, extensible library for developing AutoML systems
Stars: ✭ 159 (+783.33%)
Mutual labels:  gaussian-processes
Bayesian Optimization
Python code for bayesian optimization using Gaussian processes
Stars: ✭ 245 (+1261.11%)
Mutual labels:  gaussian-processes
Celerite
Scalable 1D Gaussian Processes in C++, Python, and Julia
Stars: ✭ 155 (+761.11%)
Mutual labels:  gaussian-processes
pyrff
pyrff: Python implementation of random fourier feature approximations for gaussian processes
Stars: ✭ 24 (+33.33%)
Mutual labels:  gaussian-processes
Safe learning
Safe reinforcement learning with stability guarantees
Stars: ✭ 140 (+677.78%)
Mutual labels:  gaussian-processes
Dynaml
Scala Library/REPL for Machine Learning Research
Stars: ✭ 195 (+983.33%)
Mutual labels:  gaussian-processes
Pilco
Bayesian Reinforcement Learning in Tensorflow
Stars: ✭ 222 (+1133.33%)
Mutual labels:  gaussian-processes
go-bayesopt
A library for doing Bayesian Optimization using Gaussian Processes (blackbox optimizer) in Go/Golang.
Stars: ✭ 47 (+161.11%)
Mutual labels:  gaussian-processes
boundary-gp
Know Your Boundaries: Constraining Gaussian Processes by Variational Harmonic Features
Stars: ✭ 21 (+16.67%)
Mutual labels:  gaussian-processes

Gaussian Process

https://travis-ci.org/anassinator/gp.svg?branch=master

This is a differentiable Gaussian Process implementation for PyTorch.

The code is based off of the Gaussian Processes for Machine Learning book and supports both Python 2 and 3.

Install

To install simply clone and run:

python setup.py install

You may also install the dependencies with pipenv as follows:

pipenv install

Finally, you may add this to your own application with either:

pip install 'git+https://github.com/anassinator/gp.git#egg=gp'
pipenv install 'git+https://github.com/anassinator/gp.git#egg=gp'

Usage

After installation, import and use as follows:

from gp import GaussianProcess
from gp.kernels import RBFKernel, WhiteNoiseKernel

k = RBFKernel() + WhiteNoiseKernel()
gp = GaussianProcess(k)
gp.set_data(X, Y)
gp.fit()

where X and Y are your training data's inputs and outputs as torch.Tensor.

You can then use the Gaussian Process's estimates as tensors as follows:

mean = gp(x)
mean, std = gp(x, return_std=True)
mean, covar = gp(x, return_covar=True)
mean, covar, var = gp(x, return_covar=True, return_var=True)
mean, covar, std = gp(x, return_covar=True, return_std=True)

The following is an example of what this Gaussian Process was able to estimate with a few randomly sampled points (in blue) of a noisy sin function. The dotted lines represent the real function that was kept a secret from the Gaussian Process, whereas the red line and the grey area represent the estimated mean and uncertainty.

Gaussian Process estimate of sin(x)

You can see the examples directory for some Jupyter notebooks with more detailed examples. You can also play with the secret functions that the Gaussian Process is attempting to learn and see how well it performs. Depending on the complexity and nature of the function, you might need to sample more data.

Finally, you can also use a custom kernel function instead of the included Radial-Basis Function (RBF) kernel by implementing your own Kernel class as in kernels.py.

Contributing

Contributions are welcome. Simply open an issue or pull request on the matter.

Linting

We use YAPF for all Python formatting needs. You can auto-format your changes with the following command:

yapf --recursive --in-place --parallel .

You can install the formatter with:

pipenv install --dev

License

See LICENSE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].