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
* Formatting and more
* Stateless updates
* Small clean up
* Renamed AbstractGPs.jl
* Updates on the likelihood
* Compilable version
* Removed joinpath and others
* More changes
* More changes
* more changes duh
* gp classification passing!
* Last updates
* Formatting
* Modify multiclass
* Moar changes
* Online example working
* Actually fixed online GP
* Fixing the sampling
* Last tutorial working!
* More fixes
* Passing examples for regression
* Fix hyperparameters update online
* Fixed inference issues
* Bayesian SVM test passing
* Fixed the prior means
* Lots of likelihoods passing tests!
* Fixes Gaussian tests
* More fixes
* Fixed multiclass
* Fixes softmax
* All the fixes in da house
* Make them int
* Fix ambiguity
* Add some formatting
* Better typing
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,10 +72,10 @@ A complete documentation is available [in the docs](https://theogf.github.io/Aug
72
72
```julia
73
73
using AugmentedGaussianProcesses;
74
74
using KernelFunctions
75
-
model =SVGP(X_train, Y_train, SqExponentialKernel(), LogisticLikelihood(),AnalyticSVI(100), 64)
76
-
train!(model, 100)
77
-
Y_predic =predict_y(model, X_test) #For getting the label directly
78
-
Y_predic_prob, Y_predic_prob_var =proba_y(model,X_test) #For getting the likelihood (and likelihood uncertainty) of predicting class 1
75
+
model =SVGP(SqExponentialKernel(), LogisticLikelihood(),AnalyticSVI(100), 64)
76
+
train!(model, X_train, Y_train, 100)
77
+
Y_predic =predict_y(model, X_test) #For getting the label directly
78
+
Y_predic_prob, Y_predic_prob_var =proba_y(model,X_test) #For getting the likelihood (and likelihood uncertainty) of predicting class 1
79
79
```
80
80
81
81
Both [documentation](https://theogf.github.io/AugmentedGaussianProcesses.jl/stable/) and [examples/tutorials](https://nbviewer.jupyter.org/github/theogf/AugmentedGaussianProcesses.jl/tree/master/examples/) are available.
0 commit comments