Fast Gaussian processes regression in O(n log n)
Project description
FastGPs: Fast Gaussian Process Regression in Python
Gaussian process regression (GPR) on $n$ data points typically costs $\mathcal{O}(n^3)$ computations and $\mathcal{O}(n^2)$ storage. Fast GPR only costs $\mathcal{O}(n \log n)$ computations and $\mathcal{O}(n)$ storage by forcing nice structure into the $n \times n$ Gram matrix of pairwise kernel evaluations. Fast GPR requires
- control over the design of experiments, i.e., sampling at fixed locations, and
- Using special kernel forms that are practically performant but generally uncommon, e.g., one cannot use common kernels such as the Squared Exponential, Matern, or Rational Quadratic.
Installation
pip install fastgps
Resources
The FastGPs documentation contains a detailed package reference documenting classes including thorough doctests. A number of example notebooks are also rendered into the documentation from fastgps/docs/examples/. We recommend reading Aleksei Sorokin's slides on Fast GPR which he presented at MCM 2025 Chicago.
Fast GPR Methods
We currently support two flavors of fast GPR:
- Pairing integration lattice point sets with shift-invariant (SI) kernels which creates circulant Gram matrices that are diagonalizable by Fast Fourier Transforms (FFTs). SI kernels are periodic and arbitrarily smooth.
- Pairing digital nets (e.g. Sobol' point sets) with digitally-shift-invariant (DSI) kernels which creates Gram matrices diagonalizable by Fast Walsh Hadamard Transforms (FWHTs). DSI kernels are discontinuous, yet versions exist for which the corresponding Reproducing Kernel Hilbert Space (RKHSs) contains arbitrarily smooth functions.
Software Features
A reference standard GP implementation is available alongside the fast GPR implementations. All GPR methods support:
- GPU computations as
FastGPsis built on thePyTorchstack. - Batching of both outputs (for functions with tensor outputs) and parameters (with flexibly shareable parameters among batched outputs).
- Multi-Task GPs with product kernels and generalized fast multi-task GPR.
- Derivative Information of arbitrarily high order.
- Bayesian Cubature for approximating integrals or expectations.
- Flexible kernel parameterizations from the
QMCPypackage. - Efficient variance projections for determining if and where to sample next.
References
This package is based off of the following publications
-
Jagadeeswaran, Rathinavel, and Fred J. Hickernell. "Fast automatic Bayesian cubature using lattice sampling." Statistics and Computing 29.6 (2019): 1215-1229.
-
Jagadeeswaran, Rathinavel, and Fred J. Hickernell. "Fast automatic Bayesian cubature using Sobol’ sampling." Advances in Modeling and Simulation: Festschrift for Pierre L'Ecuyer. Cham: Springer International Publishing, 2022. 301-318.
-
Rathinavel, Jagadeeswaran. Fast automatic Bayesian cubature using matching kernels and designs. Illinois Institute of Technology, 2019.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastgps-1.0.0.1b5.tar.gz.
File metadata
- Download URL: fastgps-1.0.0.1b5.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.24.1 CPython/3.13.6 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff8059d194c424237cd24b73e8ac4259f711cd33fdd1e4a7fcaefc245a2f5f23
|
|
| MD5 |
04f87da483cc62b54f4654b69c7f0bae
|
|
| BLAKE2b-256 |
03debe8fcf1c73c47ab5d14ad99ebbd4554b96e4a041dce0a8d75423c9effd10
|
File details
Details for the file fastgps-1.0.0.1b5-py3-none-any.whl.
File metadata
- Download URL: fastgps-1.0.0.1b5-py3-none-any.whl
- Upload date:
- Size: 33.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.24.1 CPython/3.13.6 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de18575fb066b2db4c9eaa1158ac46ed6efc1ab2a6ec8fb22c8927b59ae3ad91
|
|
| MD5 |
2675fc334ad6079b82ff0a761b385af6
|
|
| BLAKE2b-256 |
1b807d57f9d34ffc1d915c816a73a04a95a5b27e204cc6fd916dc1b751f53b14
|