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: examples/gaussian_processes/MOGP-Coregion-Hadamard.myst.md
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ jupytext:
5
5
format_name: myst
6
6
format_version: 0.13
7
7
kernelspec:
8
-
display_name: Python 3 (ipykernel)
8
+
display_name: default
9
9
language: python
10
10
name: python3
11
11
---
@@ -26,6 +26,20 @@ This notebook shows how to implement the **Intrinsic Coregionalization Model** (
26
26
The advantage of Multi-output Gaussian Processes is their capacity to simultaneously learn and infer many outputs which have the same source of uncertainty from inputs. In this example, we model the average spin rates of several pitchers in different games from a baseball dataset.
27
27
28
28
```{code-cell} ipython3
29
+
import os
30
+
31
+
32
+
def set_omp_num_threads():
33
+
"""Sets the OMP_NUM_THREADS environment variable to 1."""
0 commit comments