Documentation | Tutorials | API reference | Slack
GPflux is a toolbox dedicated to Deep Gaussian processes (DGP), the hierarchical extension of Gaussian processes (GP).
GPflux uses the mathematical building blocks from GPflow and marries these with the powerful layered deep learning API provided by Keras. This combination leads to a framework that can be used for:
- researching new (deep) Gaussian process models, and
- building, training, evaluating and deploying (deep) Gaussian processes in a modern way — making use of the tools developed by the deep learning community.
In the Documentation, we have multiple Tutorials showing the basic functionality of the toolbox, a benchmark implementation and a comprehensive API reference.
This project is assuming you are using python3
.
To install the latest (stable) release of the toolbox from PyPI, use pip
:
$ pip install gpflux
To install this project in editable mode, run the commands below from the root directory of the GPflux
repository.
make install
Check that the installation was successful by running the tests:
make test
You can have a peek at the Makefile for the commands.
Bugs, feature requests, pain points, annoying design quirks, etc: Please use GitHub issues to flag up bugs/issues/pain points, suggest new features, and discuss anything else related to the use of GPflux that in some sense involves changing the GPflux code itself. We positively welcome comments or concerns about usability, and suggestions for changes at any level of design. We aim to respond to issues promptly, but if you believe we may have forgotten about an issue, please feel free to add another comment to remind us.
We have a public Secondmind Labs slack workspace. Please use this invite link and join the #gpflux channel, whether you'd just like to ask short informal questions or want to be involved in the discussion and future development of GPflux.
All constructive input is very much welcome. For detailed information, see the guidelines for contributors.
GPflux was originally created at Secondmind Labs and is now actively maintained by (in alphabetical order) Vincent Dutordoir and ST John. We are grateful to all contributors who have helped shape GPflux.
GPflux is an open source project. If you have relevant skills and are interested in contributing then please do contact us (see "The Secondmind Labs Community" section above).
We are very grateful to our Secondmind Labs colleagues, maintainers of GPflow, Trieste and Bellman, for their help with creating contributing guidelines, instructions for users and open-sourcing in general.
To cite GPflux, please reference our arXiv paper where we review the framework and describe the design. Sample Bibtex is given below:
@article{dutordoir2021gpflux,
author = {Dutordoir, Vincent and Salimbeni, Hugh and Hambro, Eric and McLeod, John and
Leibfried, Felix and Artemev, Artem and van der Wilk, Mark and Deisenroth, Marc P.
and Hensman, James and John, ST},
title = {GPflux: A library for Deep Gaussian Processes},
year = {2021},
journal = {arXiv:2104.05674},
url = {https://arxiv.org/abs/2104.05674}
}