Skip to content

Commit 97cc8c8

Browse files
committed
Fix docs typo
1 parent 789cd90 commit 97cc8c8

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

docs/index.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Gaussian process 'Hello World' example
88

99
To gain an intuition for the exposed API provided by GPJax, a simple example of that derives the Gaussian process posterior for regression can be represented by::
1010

11+
import gpjax
1112
import jax.numpy as jnp
1213
import jax.random as jr
13-
import gpjax
1414
key = jr.PRNGKey(123)
1515

1616
X = jnp.linspace(-2., 2., 100)
@@ -24,7 +24,6 @@ To gain an intuition for the exposed API provided by GPJax, a simple example of
2424
posterior = f_prior * likelihood
2525

2626

27-
2827
.. toctree::
2928
:maxdepth: 1
3029
:caption: Getting Started

docs/nbs/spatial_modelling.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"id": "adjacent-elite",
3838
"metadata": {},
3939
"source": [
40-
"# Introduction\n",
40+
"## Introduction\n",
4141
"\n",
4242
"We'll be working through a simple spatial modelling workflow in this notebook. In reality, the process is often more complicated than what is shown here as exogenous data is often used to better understand the latent process. Further, complex kernel structures are frequently used as the underlying process is often complex and non-stationary. Finally, spatial data can often be challenging to work with due to incosistent sampling schemes and anomalous data measurements. That being said, this notebook should serve as a good introduction to using GPJax with spatial inputs.\n",
4343
"\n",
@@ -751,4 +751,4 @@
751751
},
752752
"nbformat": 4,
753753
"nbformat_minor": 5
754-
}
754+
}

0 commit comments

Comments
 (0)