https://github.com/mingdeyu/dgp
Python package 'dgpsi' for deep and linked Gaussian process emulations
https://github.com/mingdeyu/dgp
deep-gaussian-processes emulation gaussian-processes package python surrogate-models
Last synced: 6 months ago
JSON representation
Python package 'dgpsi' for deep and linked Gaussian process emulations
- Host: GitHub
- URL: https://github.com/mingdeyu/dgp
- Owner: mingdeyu
- License: mit
- Created: 2020-08-19T11:08:55.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-14T19:59:13.000Z (6 months ago)
- Last Synced: 2024-12-14T20:28:13.753Z (6 months ago)
- Topics: deep-gaussian-processes, emulation, gaussian-processes, package, python, surrogate-models
- Language: Python
- Homepage: https://dgpsi.readthedocs.io
- Size: 14.8 MB
- Stars: 21
- Watchers: 2
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dgpsi
[](https://github.com/mingdeyu/DGP/releases)
[](https://anaconda.org/conda-forge/dgpsi)

[](https://dgpsi.readthedocs.io)
[](https://github.com/mingdeyu/dgpsi-R)## For R users
The `R` interface to the package is available at [`dgpsi-R`](https://github.com/mingdeyu/dgpsi-R).## A Python package for deep and linked Gaussian process emulations using stochastic imputation (SI)
`dgpsi` currently implements:* Gaussian process emulations with separable or non-separable squared exponential and Matérn-2.5 kernels.
* Deep Gaussian process emulation with flexible architecture construction:
- multiple layers;
- multiple GP nodes;
- separable or non-separable squared exponential and Matérn2.5 kernels;
- global input connections;
- non-Gaussian likelihoods (Poisson, Negative-Binomial, heteroskedastic Gaussian, and categorical);
* Linked emulation of feed-forward systems of computer models:
- linking GP emulators of deterministic individual computer models;
- linking GP and DGP emulators of deterministic individual computer models;
* Multi-core predictions from GP, DGP, and Linked (D)GP emulators;
* Fast Leave-One-Out (LOO) cross validations for GP and DGP emulators.
* Calculations of ALM, MICE, and VIGF sequential design criterions.
*  [Large-scale GP, DGP, and Linked (D)GP emulations.](https://github.com/mingdeyu/DGP/blob/master/demo/vecchia_SI.ipynb)
*  [Scalable DGP classification using Stochastic Imputation.](https://github.com/mingdeyu/DGP/blob/master/demo/DGP_classification.ipynb)## Installation
`dgpsi` currently requires Python version 3.8 and 3.9. The package can be installed via `pip`:```bash
pip install dgpsi
```or `conda`:
```bash
conda install -c conda-forge dgpsi
```However, to gain the best performance of the package or you are using an Apple Silicon computer, we recommend the following steps for the installation:
* Download and install `Miniforge3` that is compatible to your system from [here](https://github.com/conda-forge/miniforge).
* Run the following command in your terminal app to create a virtual environment called `dgp_si`:```bash
conda create -n dgp_si python=3.9.13
```* Activate and enter the virtual environment:
```bash
conda activate dgp_si
```* Install `dgpsi`:
- for Apple Silicon users, you could gain speed-up by switching to Apple's Accelerate framework:```bash
conda install dgpsi "libblas=*=*accelerate"
```- for Intel users, you could gain speed-up by switching to MKL:
```bash
conda install dgpsi "libblas=*=*mkl"
```- otherwise, simply run:
```bash
conda install dgpsi
```## Demo and documentation
Please see [demo](https://github.com/mingdeyu/DGP/tree/master/demo) for some illustrative examples of the method. The API reference
of the package can be accessed from [https://dgpsi.readthedocs.io](https://dgpsi.readthedocs.io).## Tips
* Since SI is a stochastic inference, in case of unsatisfactory results, you may want to try to restart the training multiple times even with initial values of hyperparameters unchanged;
* The recommended DGP structure is a two-layered one with the number of GP nodes in the first layer equal to the number of input dimensions (i.e., number of input columns) and the number of GP nodes in the second layer equal to the number of output dimensions (i.e., number of output columns) or the number of parameters in the specified likelihood.## Contact
Please feel free to email me with any questions and feedbacks:Deyu Ming <[[email protected]](mailto:[email protected])>.
## Research Notice
This package is part of an ongoing research initiative. For detailed information about the research aspects and guidelines for use, please refer to our [Research Notice](./RESEARCH-NOTICE.md).## References
> [Ming, D. and Williamson, D. (2023) Linked deep Gaussian process emulation for model networks. arXiv:2306.01212.](https://arxiv.org/abs/2306.01212)> [Ming, D., Williamson, D., and Guillas, S. (2023) Deep Gaussian process emulation using stochastic imputation. Technometrics. 65(2), 150-161.](https://doi.org/10.1080/00401706.2022.2124311)
> [Ming, D. and Guillas, S. (2021) Linked Gaussian process emulation for systems of computer models using Matérn kernels and adaptive design, SIAM/ASA Journal on Uncertainty Quantification. 9(4), 1615-1642.](https://epubs.siam.org/doi/abs/10.1137/20M1323771)