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
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
-
# BayesNewton
1
+
# Bayes-Newton
2
2
3
-
BayesNewton is a Gaussian process (GP) library built in [JAX](https://github.com/google/jax) (with [objax](https://github.com/google/objax)), built and actively maintained by [Will Wilkinson](https://wil-j-wil.github.io/).
3
+
Bayes-Newton is a Gaussian process (GP) library built in [JAX](https://github.com/google/jax) (with [objax](https://github.com/google/objax)), built and actively maintained by [Will Wilkinson](https://wil-j-wil.github.io/).
4
4
5
-
BayesNewton provides a unifying view of approximate Bayesian inference for GPs, and allows for the combination of many models (e.g. GPs, sparse GPs, Markov GPs, sparse Markov GPs) with the inference method of your choice (VI, EP, Laplace, Linearisation). For a full list of the methods implemented scroll down to the bottom of this page.
5
+
Bayes-Newton provides a unifying view of approximate Bayesian inference for GPs, and allows for the combination of many models (e.g. GPs, sparse GPs, Markov GPs, sparse Markov GPs) with the inference method of your choice (VI, EP, Laplace, Linearisation). For a full list of the methods implemented scroll down to the bottom of this page.
6
6
7
7
## Installation
8
8
In the top directory (BayesNewton), run
@@ -11,7 +11,7 @@ pip install -e .
11
11
```
12
12
13
13
## Example
14
-
Given some inputs `x` and some data `y`, you can construct a BayesNewton model as follows,
14
+
Given some inputs `x` and some data `y`, you can construct a Bayes-Newton model as follows,
15
15
```python
16
16
kern = bayesnewton.kernels.Matern52()
17
17
lik = bayesnewton.likelihoods.Gaussian()
@@ -47,12 +47,12 @@ Full demos are available [here](https://github.com/AaltoML/BayesNewton/tree/main
47
47
48
48
This software is provided under the Apache License 2.0. See the accompanying LICENSE file for details.
0 commit comments