Home

AugmentedGaussianProcesses.jl

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 = SparseXGPC(X_train,y_train,kernel=RBFKernel(1.0),m=50)
model.train(iterations=100)
y_pred = model.predict(X_test)

Related Gaussian Processes packages

License

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