gpmp-contrib 0.9.36__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gpmp_contrib-0.9.36/AUTHORS.md +9 -0
- gpmp_contrib-0.9.36/LICENSE.txt +674 -0
- gpmp_contrib-0.9.36/MANIFEST.in +2 -0
- gpmp_contrib-0.9.36/PKG-INFO +836 -0
- gpmp_contrib-0.9.36/README.md +136 -0
- gpmp_contrib-0.9.36/VERSION +1 -0
- gpmp_contrib-0.9.36/gpmp_contrib.egg-info/PKG-INFO +836 -0
- gpmp_contrib-0.9.36/gpmp_contrib.egg-info/SOURCES.txt +33 -0
- gpmp_contrib-0.9.36/gpmp_contrib.egg-info/dependency_links.txt +1 -0
- gpmp_contrib-0.9.36/gpmp_contrib.egg-info/requires.txt +11 -0
- gpmp_contrib-0.9.36/gpmp_contrib.egg-info/top_level.txt +1 -0
- gpmp_contrib-0.9.36/gpmpcontrib/__init__.py +18 -0
- gpmp_contrib-0.9.36/gpmpcontrib/computerexperiment.py +620 -0
- gpmp_contrib-0.9.36/gpmpcontrib/misc/__init__.py +0 -0
- gpmp_contrib-0.9.36/gpmpcontrib/modelcontainer.py +1921 -0
- gpmp_contrib-0.9.36/gpmpcontrib/models/__init__.py +19 -0
- gpmp_contrib-0.9.36/gpmpcontrib/models/models_ML.py +105 -0
- gpmp_contrib-0.9.36/gpmpcontrib/models/models_REMAP.py +858 -0
- gpmp_contrib-0.9.36/gpmpcontrib/models/models_REML.py +112 -0
- gpmp_contrib-0.9.36/gpmpcontrib/models/models_noisy_REML.py +160 -0
- gpmp_contrib-0.9.36/gpmpcontrib/optim/__init__.py +3 -0
- gpmp_contrib-0.9.36/gpmpcontrib/optim/excursionset.py +213 -0
- gpmp_contrib-0.9.36/gpmpcontrib/optim/expectedimprovement.py +87 -0
- gpmp_contrib-0.9.36/gpmpcontrib/optim/pareto.py +231 -0
- gpmp_contrib-0.9.36/gpmpcontrib/optim/setinversion.py +220 -0
- gpmp_contrib-0.9.36/gpmpcontrib/plot/__init__.py +6 -0
- gpmp_contrib-0.9.36/gpmpcontrib/plot/visualization.py +323 -0
- gpmp_contrib-0.9.36/gpmpcontrib/regp/__init__.py +2 -0
- gpmp_contrib-0.9.36/gpmpcontrib/regp/regp.py +386 -0
- gpmp_contrib-0.9.36/gpmpcontrib/samplingcriteria.py +366 -0
- gpmp_contrib-0.9.36/gpmpcontrib/sequentialprediction.py +229 -0
- gpmp_contrib-0.9.36/gpmpcontrib/sequentialstrategy.py +528 -0
- gpmp_contrib-0.9.36/gpmpcontrib/test_problems.py +2196 -0
- gpmp_contrib-0.9.36/pyproject.toml +42 -0
- gpmp_contrib-0.9.36/setup.cfg +4 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
gpmp is mainly developed and maintained by:
|
|
2
|
+
|
|
3
|
+
* VAZQUEZ Emmanuel (emmanuel.vazquez@centralesupelec.fr)
|
|
4
|
+
|
|
5
|
+
The following people have helped develop the package in various ways
|
|
6
|
+
(from providing ideas and bug reports to actually contributing code):
|
|
7
|
+
|
|
8
|
+
* BECT Julien (julien.bect@centralesupelec.fr)
|
|
9
|
+
* PETIT S�bastien (sebastien.petit@lne.fr)
|