-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cooperative components kriging model as application (#642)
* add cooperative components kriging model as application * ruff formating of new cckrg python files * Fix documentation * Add forgotten file * Add notebook * Adjust cckrg example * Add notebook link --------- Co-authored-by: relf <[email protected]>
- Loading branch information
1 parent
1103982
commit 8f20a43
Showing
9 changed files
with
1,405 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.. _cckrg-ref-label: | ||
|
||
Cooperative Components Kriging (CoopCompKRG) | ||
================================ | ||
|
||
Cooperative Components Kriging is a way of fitting a high-dimensional ordinary Kriging model by sequential lower-dimensional component model fits. For each component, only the associated hyperparameters are optimized. All other hyperparameters are set to a so-called cooperative context vector, which contains the current best hyperparameter values. | ||
|
||
This application contains the single component model fits. The loop over the components has to be implemented individually, as shown in the usage example below. | ||
|
||
The cooperative components model fit was developed as part of a high-dimensional surrogate-based optimization process. It is inspired by distributed multi-disciplinary design optimization (MDO) approaches and the cooperative EGO by Zhan et al. [1]_. | ||
|
||
|
||
References | ||
---------- | ||
.. [1] Zhan, D., Wu, J., Xing, H. et al., A cooperative approach to efficient global optimization. J Glob Optim 88, 327–357 (2024). | ||
|
||
Usage | ||
----- | ||
|
||
.. embed-test-print :: smt.applications.tests.test_cckrg , TestCCKRG , run_cckrg_example | ||
|
||
Options | ||
------- | ||
|
||
.. embed-options-table :: smt.applications , CoopCompKRG , options |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.