Skip to main content

Python library for Gaussian Process Regression.

Project description

GPlib

A python library for Gaussian Process Regression.

Setup GPlib

  • Create and activate venv

    python3 -m venv .env
    
    source .env/bin/activate
    
  • Upgrade pip

    python -m pip install --upgrade pip
    
  • Install GPlib package

    python -m pip install gplib
    
  • Matplotlib requires to install a backend to work interactively

    (See https://matplotlib.org/faq/virtualenv_faq.html). The easiest solution is to install the Tk framework, which can be found as python-tk (or python3-tk) on certain Linux distributions.

Use GPlib

  • Import GPlib to use it in your python script.

    import gplib
    
  • Initialize the GP with the desired modules.

    gp = gplib.GP(
        mean_function=gplib.mea.Fixed(),
        covariance_function=gplib.ker.SquaredExponential()
    )
    
  • Plot the GP.

    gplib.plot.gp_1d(gp, n_samples=10)
    
  • Generate some random data.

    import numpy as np
    data = {
        'X': np.arange(3, 8, 1.0)[:, None],
        'Y': np.random.uniform(0, 2, 5)[:, None]
    }
    
  • Get the posterior GP given the data.

    posterior_gp = gp.get_posterior(data)
    
  • Finally plot the posterior GP.

    gplib.plot.gp_1d(posterior_gp, data, n_samples=10)
    
  • There are more examples in examples/ directory. Check them out!

Develop GPlib

  • Download the repository using git

    git clone https://gitlab.com/ibaidev/gplib.git
    
  • Update API documentation

    source ./.env/bin/activate
    pip install Sphinx
    cd docs/
    sphinx-apidoc -f -o ./ ../gplib
    

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gplib-0.18.0.tar.gz (44.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gplib-0.18.0-py3-none-any.whl (89.6 kB view details)

Uploaded Python 3

File details

Details for the file gplib-0.18.0.tar.gz.

File metadata

  • Download URL: gplib-0.18.0.tar.gz
  • Upload date:
  • Size: 44.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for gplib-0.18.0.tar.gz
Algorithm Hash digest
SHA256 fe13c24f68c3f04dea3429c31c19ee6741a35fea5f49ed7461b6ab74f277c5c7
MD5 137a450cd640619095b0f82ef8d70a44
BLAKE2b-256 3b24be1ce742305a7d44d967495e7fd4fd5556bbd15376fcf278c2f8e03f2b90

See more details on using hashes here.

File details

Details for the file gplib-0.18.0-py3-none-any.whl.

File metadata

  • Download URL: gplib-0.18.0-py3-none-any.whl
  • Upload date:
  • Size: 89.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for gplib-0.18.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e69407dbcf1ea5bc55f122017874a9d1511e0c4f789e5bdb91a8caff686e6804
MD5 131b49abe14bdb82796921146f7027c3
BLAKE2b-256 0a6ffcc8882097bb0674de1441e234b9a1869d8621a12297d0c2f6484e267eb2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page