Skip to content

Commit b256cbb

Browse files
authored
Update README.md
1 parent bc6885f commit b256cbb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# BayesNewton
1+
# Bayes-Newton
22

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/).
44

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.
66

77
## Installation
88
In the top directory (BayesNewton), run
@@ -11,7 +11,7 @@ pip install -e .
1111
```
1212

1313
## 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,
1515
```python
1616
kern = bayesnewton.kernels.Matern52()
1717
lik = bayesnewton.likelihoods.Gaussian()
@@ -47,12 +47,12 @@ Full demos are available [here](https://github.com/AaltoML/BayesNewton/tree/main
4747

4848
This software is provided under the Apache License 2.0. See the accompanying LICENSE file for details.
4949

50-
## Citing BayesNewton
50+
## Citing Bayes-Newton
5151

5252
```
5353
@software{bayesnewton2021github,
5454
author = {William J. Wilkinson},
55-
title = {{BayesNewton}},
55+
title = {{Bayes-Newton}},
5656
url = {https://github.com/AaltoML/BayesNewton},
5757
version = {0.0},
5858
year = {2021},

0 commit comments

Comments
 (0)