Skip to content

Commit bae121a

Browse files
Add HSGP Latent GP approximation (#6458)
* add HSGP implementation * Extend Covariances to support power spectral densities --------- Co-authored-by: Michael Osthege <[email protected]>
1 parent c709abf commit bae121a

File tree

7 files changed

+929
-74
lines changed

7 files changed

+929
-74
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ jobs:
7676
- |
7777
tests/distributions/test_timeseries.py
7878
tests/gp/test_cov.py
79+
tests/gp/test_hsgp_approx.py
7980
tests/gp/test_gp.py
8081
tests/gp/test_mean.py
8182
tests/gp/test_util.py

docs/source/api/gp/implementations.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Implementations
66
.. autosummary::
77
:toctree: generated
88

9+
HSGP
910
Latent
1011
LatentKron
1112
Marginal

pymc/gp/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@
2222
MarginalKron,
2323
MarginalSparse,
2424
)
25+
from pymc.gp.hsgp_approx import HSGP

0 commit comments

Comments
 (0)