https://github.com/maresb/pymc-gpx
https://github.com/maresb/pymc-gpx
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maresb/pymc-gpx
- Owner: maresb
- License: apache-2.0
- Created: 2024-08-27T22:36:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-01T17:50:25.000Z (over 1 year ago)
- Last Synced: 2025-08-09T23:49:37.480Z (10 months ago)
- Language: Python
- Size: 347 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# pymc-gpx
[](https://pypi.org/project/pymc-gpx)
-----
Unstable and eXperimental manifold-oriented Gaussian processes for PyMC.
The goal is to sort out the API and eventually merge it into PyMC. We are mainly focused on HSGP, but may also tweak the normal GP implementation.
This API will break without notice, so it's strongly recommended to pin the exact version of this package.
## HSGP to-dos
- [ ] Add interval with Dirichlet boundary conditions
- [ ] Add interval with Neumann boundary conditions
- [ ] Add interval with Neumann boundary conditions and zero mean
- [ ] Add interval with periodic boundary conditions
- [ ] Add interval with mixed boundary conditions
- [ ] Add tensor products
- [ ] Add sphere
- [ ] Add disc with Dirichlet boundary conditions
- [ ] Add disc with Neumann boundary conditions
- [ ] Add harmonic oscillator
## Getting started
```bash
pip install pymc-gpx
```
```python
# Import the old but tweaked HSGP API
from gpx.old import HSGP
```
## Development
It's recommended to get and use [pixi](https://pixi.sh) and [pre-commit](https://pre-commit.com/). See the documentation for information on Pixi integration with IDEs like VS Code or JupyterLab.
```bash
# Enable pre-commit hooks
pre-commit install
# Run an activated shell
pixi shell
# Run mypy and tests
pixi run mypy
pixi run test
pixi run test-old
```