You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Oh My GP! is a Julia package in development for **extremely efficient Gaussian Processes algorithms**. It contains for the moment two classifiers : one based on the Bayesian SVM (BSVM), and a state-of-the-art algorithm for classification using the logistic link called X-GPC (XGPC), two regression models one classic based on Gaussian likelihood (GPRegression) and another one in development base on Student T likelihood. A multiclass classifier model is in development.
9
+
10
+
AugmentedGaussianProcesses! is a Julia package in development for **Data Augmented Gaussian Processes**. It contains a collection of models for different **gaussian and non-gaussian likelihoods**, which are transformed via data augmentation into **conditionally conjugate likelihood** allowing for **extremely fast inference** via block coordinate updates.
11
+
12
+
# The package contains at the moment :
13
+
- Two GP classifier models
14
+
-**BSVM** : A Classifier with a likelihood equivalent to the classic SVM
15
+
-**XGPC** : A Classifier with a Bernoulli likelihood with the logistic link
16
+
- Two GP Regression models
17
+
-**GPRegression** : The standard Gaussian Process regression model with a Gaussian Likelihood (no data augmentation was needed here)
18
+
-**StudentT** : The standard Gaussian Process regression with a Student-t likelihood (the degree of freedom ν is not optimizable for the moment)
19
+
- More models in development
20
+
-**MultiClass** : A multiclass classifier model, relying on a modified version of softmax
21
+
-**Probit** : A Classifier with a Bernoulli likelihood with the probit link
22
+
-**Online** : Allowing for all algorithms to work online as well
11
23
12
24
## Install the package
13
25
14
26
The package requires Julia 1.0
15
-
Run in `Julia` press `]` and type `add OMGP` (once it has been released), it will install the package and all its requirements
16
-
27
+
Run in `Julia` press `]` and type `add AugmentedGaussianProcesses` (once it has been released), it will install the package and all its requirements
17
28
18
29
## Use the package
19
30
20
31
A complete documentation is currently being written, for now you can use this very basic example where `X_train` is a matrix ``N x D`` where `N` is the number of training points and `D` is the number of dimensions and `Y_train` is a vector of outputs.
21
32
22
33
```julia
23
-
usingOMGPC
34
+
usingAugmentedGaussianProcesses
24
35
model =SparseXGPC(X_train,Y_train;Stochastic=true,batchsize=100,m=64,kernel=RBFKernel(1.0)) #Parameters after ; are optional
25
36
model.train(iterations=100)
26
37
Y_predic = model.predict(X_test) #For getting the label directly
@@ -40,6 +51,6 @@ Arxiv "Efficient Gaussian Process Classification using Polya-Gamma Variables" by
40
51
UAI 13' "Gaussian Process for Big Data" by James Hensman, Nicolo Fusi and Neil D. Lawrence [https://arxiv.org/abs/1309.6835][arxivgpbigdata]
41
52
42
53
[arxivgpbigdata]:https://arxiv.org/abs/1309.6835
43
-
[31b06e91]: https://github.com/theogf/OMGP.jl/blob/master/examples/Classification%20-%20SXGPC.ipynb"Classification with Sparse XGPC"
54
+
[31b06e91]: https://github.com/theogf/AugmentedGaussianProcesses.jl/blob/master/examples/Classification%20-%20SXGPC.ipynb"Classification with Sparse XGPC"
0 commit comments