- Notifications
You must be signed in to change notification settings - Fork7
Python package 'dgpsi' for deep and linked Gaussian process emulations
License
mingdeyu/DGP
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
TheR interface to the package is available atdgpsi-R.
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.
- Scalable DGP classification using Stochastic Imputation.
The current stable release ofdgpsi supports Python versions 3.9 (PyPI only), 3.10, 3.11, and 3.12. The stable release can be installed viapip:
pip install dgpsi
orconda:
conda install -c conda-forge dgpsi
However, to achieve the best computational performance of the package (e.g., on Apple Silicon), we recommend the following steps for the installation:
Download and install
Miniforge3that is compatible to your system fromhere.Run the following command in your terminal app to create a virtual environment called
dgp_si:conda create -n dgp_si python=3.10
Activate and enter the Conda environment:
conda activate dgp_si
Install
dgpsi:for Apple Silicon users, you could gain speed-up by switching to Apple's Accelerate framework:
# for macOS <= 13.2conda install -c conda-forge dgpsi"libblas=*=*accelerate"# for macOS >= 13.3conda install -c conda-forge dgpsi"libblas=*=*newaccelerate"
for Intel users, you could gain speed-up by switching to MKL:
conda install -c conda-forge dgpsi"libblas=*=*mkl""mkl>=2022"
otherwise, simply run:
conda install -c conda-forge dgpsi
If you want to try the newest features and fixes before the next release, you can install the development build using the provided Conda environment YAMLs, which select the optimal BLAS and dependencies for your platform.
Clone the repository:
git clone https://github.com/mingdeyu/DGP.gitcd DGPPick the right environment file for your platform:
Hardware / Platform BLAS backend YAML file Apple Silicon (macOS <= 13.2) Accelerate env-macos-arm64-accelerate.yamlApple Silicon (macOS >= 13.3) New Accelerate env-macos-arm64-newaccelerate.yamlIntel CPU (macOS x86_64) MKL env-macos-intel-mkl.yamlIntel CPU (Linux/Windows x86_64) MKL env-intel-mkl.yamlOther (Linux/Windows) OpenBLAS env-other-openblas.yamlCreate and activate the Conda environment:
# replace the yaml filename with the one for your platformconda env create -f env-macos-arm64-accelerate.yamlconda activate dgp_si_devTip: You can override the Conda environment name by appending
-n <myenv>to the create command.Install the dev version from your local clone:
pip install --no-deps --no-build-isolation.
Please seedemo for some illustrative examples of the method. The API referenceof the package can be accessed fromhttps://dgpsi.readthedocs.io.
- 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.
Please feel free to email me with any questions and feedbacks:
Deyu Ming <deyu.ming.16@ucl.ac.uk>.
This package is part of an ongoing research initiative. For detailed information about the research aspects and guidelines for use, please refer to ourResearch Notice.
About
Python package 'dgpsi' for deep and linked Gaussian process emulations
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.