Skip to content

Commit 6decf20

Browse files
committed
Update PR number
1 parent 6638bbe commit 6decf20

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/gaussian_processes/MOGP-Coregion-Hadamard.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@
785785
"source": [
786786
"def get_icm(input_dim, kernel, W=None, kappa=None, B=None, active_dims=None):\n",
787787
" coreg = pm.gp.cov.Coregion(input_dim=input_dim, W=W, kappa=kappa, B=B, active_dims=active_dims)\n",
788-
" icm_cov = kernel * coreg # Seperate input => Use Hadamard Product\n",
788+
" icm_cov = kernel * coreg # Use Hadamard Product for separate inputs\n",
789789
" return icm_cov"
790790
]
791791
},
@@ -1653,7 +1653,7 @@
16531653
"metadata": {},
16541654
"source": [
16551655
"## Authors\n",
1656-
"* Authored by Danh Phan, Bill Engels, Chris Fonnesbeck in October, 2022 ([pymc-examples#445](https://github.com/pymc-devs/pymc-examples/pull/445))"
1656+
"* Authored by Danh Phan, Bill Engels, Chris Fonnesbeck in October, 2022 ([pymc-examples#454](https://github.com/pymc-devs/pymc-examples/pull/454))"
16571657
]
16581658
},
16591659
{

myst_nbs/gaussian_processes/MOGP-Coregion-Hadamard.myst.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ $$ B = WW^T + diag(kappa) $$
153153
```{code-cell} ipython3
154154
def get_icm(input_dim, kernel, W=None, kappa=None, B=None, active_dims=None):
155155
coreg = pm.gp.cov.Coregion(input_dim=input_dim, W=W, kappa=kappa, B=B, active_dims=active_dims)
156-
icm_cov = kernel * coreg # Seperate input => Use Hadamard Product
156+
icm_cov = kernel * coreg # Use Hadamard Product for separate inputs
157157
return icm_cov
158158
```
159159

@@ -324,7 +324,7 @@ This work is supported by 2022 [Google Summer of Codes](https://summerofcode.wit
324324
+++
325325

326326
## Authors
327-
* Authored by Danh Phan, Bill Engels, Chris Fonnesbeck in October, 2022 ([pymc-examples#445](https://github.com/pymc-devs/pymc-examples/pull/445))
327+
* Authored by Danh Phan, Bill Engels, Chris Fonnesbeck in October, 2022 ([pymc-examples#454](https://github.com/pymc-devs/pymc-examples/pull/454))
328328

329329
+++
330330

0 commit comments

Comments
 (0)