Home

AugmentedGaussianProcesses.jl

Docs Latest Docs Stable Build Status Coverage Status

A Julia package for Augmented and Normal Gaussian Processes.


Authors

Installation

AugmentedGaussianProcesses is a registered package and is symply installed by running

pkg> add AugmentedGaussianProcesses

Basic example

Here is a simple example to start right away :

using AugmentedGaussianProcesses
model = SVGP(X_train,y_train,RBFKernel(1.0),LogisticLikelihood(),AnalyticVI(),50)
train!(model,iterations=100)
y_pred = predict_y(model,X_test)

Related Gaussian Processes packages

A general comparison between this package is done on Julia GP Package Comparison. Benchmark evaluations may come later.

License

AugmentedGaussianProcesses.jl is licensed under the MIT "Expat" license; see LICENSE for the full license text.