gptoolsStan
is a minimal package to publish Stan code for efficient Gaussian process inference. The package can be used with the cmdstanr
interface for Stan in R.
- Install
cmdstanr
if you haven't already (see here for details). - Install this package by running
install.packages("gptoolsStan")
. - Compile your first model.
library(cmdstanr)
library(gptoolsStan)
model <- cmdstan_model(
stan_file="path/to/your/model.stan",
include_paths=gptools_include_path(),
)
For an end-to-end example, see this vignette. More comprehensive documentation, including many examples, is available although using the cmdstanpy
interface for Python.