https://github.com/jgosmann/goppy
Gaussian Online Processes for Python
https://github.com/jgosmann/goppy
gaussian-processes online-learning python
Last synced: 6 months ago
JSON representation
Gaussian Online Processes for Python
- Host: GitHub
- URL: https://github.com/jgosmann/goppy
- Owner: jgosmann
- License: mit
- Created: 2014-01-14T17:29:44.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2024-02-24T14:39:50.000Z (over 1 year ago)
- Last Synced: 2024-04-25T02:00:50.305Z (over 1 year ago)
- Topics: gaussian-processes, online-learning, python
- Language: Python
- Size: 421 KB
- Stars: 14
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://github.com/jgosmann/goppy/actions/workflows/ci.yml/badge.svg
:target: https://github.com/jgosmann/goppy/actions/workflows/ci.yml
:alt: CI and release pipeline
.. image:: https://codecov.io/gh/jgosmann/goppy/branch/main/graph/badge.svg?token=mkgZs4nds5
:target: https://codecov.io/gh/jgosmann/goppy
.. image:: https://img.shields.io/pypi/v/goppy
:target: https://pypi.org/project/goppy/
:alt: PyPI
.. image:: https://img.shields.io/pypi/pyversions/goppy
:target: https://pypi.org/project/goppy/
:alt: PyPI - Python Version
.. image:: https://img.shields.io/pypi/l/goppy
:target: https://pypi.org/project/goppy/
:alt: PyPI - License.. image:: https://github.com/jgosmann/goppy/blob/main/doc/_static/goppy-sm.png
:alt: GopPy logoOverview
--------GopPy (Gaussian Online Processes for Python) is a pure Python module providing
a Gaussian process implementation which allows to add new data efficiently
online. I wrote this module because all other Python implementations I knew did
not support efficient online updates.The feature list:
* `scikit-learn `_ compatible interface.
* Efficient online updates.
* Prediction of first order derivatives.
* Estimation of the log likelihood and its derivative.
* Well documented.
* `Good test coverage. `_
* MIT license.Documentation
-------------The documentation can be found at https://goppy.readthedocs.io/en/latest/.
Installation
------------You can install GopPy with pip::
pip install goppy