.. toctree:: :hidden: docs/background docs/examples docs/interface
Gaussian processes (GPs) are powerful distributions for modeling functional data, but using them is computationally challenging except for small datasets. gptools implements two methods for performant GP inference in Stan.
- A :ref:`sparse-approximation` of the likelihood. This approach includes nearest neighbor Gaussian processes but also supports more general dependence structures, e.g., for periodic kernels.
- An exact likelihood evaluation for data on regularly spaced lattices using fast :ref:`Fourier-methods`.
The implementation follows Stan's design and exposes performant inference through a familiar interface. We provide interfaces in Python and R. See the accompanying publication Scalable Gaussian Process Inference with Stan for details of the implementation.
The library is loaded with Stan's #include
statement, and methods to evaluate or approximate the likelihood of a GP use the declarative ~
sampling syntax. The following brief example uses :ref:`Fourier-methods` to sample GP realizations.
.. literalinclude:: docs/getting_started/getting_started.stan :language: stan
You can learn more by following the :doc:`docs/examples` or delving into the :doc:`docs/interface`. The :doc:`docs/background` section offers a deeper explanation of the methods used to evaluate likelihoods and the pros and cons of different parameterizations.
- Install cmdstanpy and cmdstan if you haven't already (see here for details).
- Install gptools from PyPI by running
pip install gptools-stan
from the command line. - Compile your first model. The library exposes a function :func:`gptools.stan.compile_model` for compiling :class:`cmdstanpy.CmdStanModel`s with the correct include paths. For example, the example above can be compiled using the following snippet.
>>> from gptools.stan import compile_model
>>>
>>> stan_file = "docs/getting_started/getting_started.stan"
>>> model = compile_model(stan_file=stan_file)
>>> model.name
'getting_started'
- Install cmdstanr and cmdstan if you haven't already (see here for details).
- Install gptools from CRAN by running
install.packages("gptoolsStan")
. - Compile your first model.
> library(cmdstanr)
> library(gptoolsStan)
>
> model <- cmdstan_model(
+ stan_file="docs/getting_started/getting_started.stan",
+ include_paths=gptools_include_path(),
+ )
If you use another Stan interface, you can download the library files from GitHub. Then add the library location to the compiler include_paths
as described in the manual.
The accompanying publication "Scalable Gaussian process inference with Stan" provides theoretical background and a technical description of the methods. All results and figures can be reproduced by following the instructions in the repository of reproduction materials.