https://github.com/alan-turing-institute/mogp-emulator
Package for fitting Gaussian Process Emulators to multiple output computer simulation results.
https://github.com/alan-turing-institute/mogp-emulator
gaussian-processes hut23 hut23-231 hut23-232 uncertainty-quantification
Last synced: 5 months ago
JSON representation
Package for fitting Gaussian Process Emulators to multiple output computer simulation results.
- Host: GitHub
- URL: https://github.com/alan-turing-institute/mogp-emulator
- Owner: alan-turing-institute
- License: mit
- Created: 2019-02-28T14:17:25.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2023-10-18T10:17:07.000Z (over 1 year ago)
- Last Synced: 2024-06-11T16:26:57.679Z (11 months ago)
- Topics: gaussian-processes, hut23, hut23-231, hut23-232, uncertainty-quantification
- Language: Python
- Homepage:
- Size: 4.08 MB
- Stars: 45
- Watchers: 10
- Forks: 16
- Open Issues: 62
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Multi-Output Gaussian Process Emulator
`mogp_emulator` is a Python package for fitting Gaussian Process Emulators to computer simulation results.
The code contains routines for fitting GP emulators to simulation results with a single or multiple target
values, optimizing hyperparameter values, and making predictions on unseen data. The library also implements
experimental design, dimension reduction, and calibration tools to enable modellers to understand complex
computer simulations.[](https://travis-ci.com/alan-turing-institute/mogp-emulator)
[](https://codecov.io/gh/alan-turing-institute/mogp-emulator)
[](https://mogp-emulator.readthedocs.io/en/latest/?badge=latest)## Installation
`mogp_emulator` requires Python version 3.6 or later. The code and all of its dependencies can be
installed via `pip`:```bash
pip install mogp-emulator
```Optionally, you may want to install some additional packages. In particular, `matplotlib` is useful for
visualising some of the results of the benchmarks. These can be found in the
[requirements-optional.txt](requirements-optional.txt) file in the main repository.Additionally, packages used in testing and developing the code base are listed in
[requirements-dev.txt](requirements-dev.txt).## Documentation
The documentation is available at [readthedocs](https://mogp-emulator.readthedocs.io) for the current
builds of the `master` and `devel` versions, plus any previous tagged releases. The documentation
is available there in HTML, PDF, or e-Pub format.## Getting Help
This package is under active development by the Research Engineering Group at the Alan Turing Institute
as part of several projects on Uncertainty Quantification. Questions about the code or any feedback on
the usability and features that you would find useful can be sent to Eric Daub
<[[email protected]](mailto:[email protected])>. If you encounter any bugs or problems with installing
the software, please see the Issues tab on the Github page, and if the issue is not present, create a new one.## Contributing
If you find this software useful, please consider taking part in its development! We aim to make
this a welcoming, collaborative, open-source project where users of any background or skill levels feel that they
can make valuable contributions. Please see the [Code of Conduct](CODE_OF_CONDUCT.md) for more on our
expectations for participation in this project, and our [Contributing Guidelines](CONTRIBUTING.md)
for how to get involved.