jaxbo 0.1.1__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.
- jaxbo-0.1.1/LICENSE +202 -0
- jaxbo-0.1.1/PKG-INFO +115 -0
- jaxbo-0.1.1/README.md +67 -0
- jaxbo-0.1.1/jaxbo/__init__.py +26 -0
- jaxbo-0.1.1/jaxbo/acquisitions.py +178 -0
- jaxbo-0.1.1/jaxbo/initializers.py +114 -0
- jaxbo-0.1.1/jaxbo/input_priors.py +74 -0
- jaxbo-0.1.1/jaxbo/kernels.py +108 -0
- jaxbo-0.1.1/jaxbo/mcmc_models.py +815 -0
- jaxbo-0.1.1/jaxbo/models/__init__.py +42 -0
- jaxbo-0.1.1/jaxbo/models/base_gpmodel.py +421 -0
- jaxbo-0.1.1/jaxbo/models/deep_multifidelity_gp.py +134 -0
- jaxbo-0.1.1/jaxbo/models/deep_multifidelity_gp_multioutputs.py +252 -0
- jaxbo-0.1.1/jaxbo/models/gp_model.py +161 -0
- jaxbo-0.1.1/jaxbo/models/gradient_gp.py +98 -0
- jaxbo-0.1.1/jaxbo/models/heterogeneous_multifidelity_gp.py +128 -0
- jaxbo-0.1.1/jaxbo/models/manifold_gp_model.py +102 -0
- jaxbo-0.1.1/jaxbo/models/manifold_gp_multioutputs.py +208 -0
- jaxbo-0.1.1/jaxbo/models/multifidelity_gp.py +200 -0
- jaxbo-0.1.1/jaxbo/models/multiple_independent_heterogeneous_mfgp.py +298 -0
- jaxbo-0.1.1/jaxbo/models/multiple_independent_mfgp.py +278 -0
- jaxbo-0.1.1/jaxbo/models/multiple_independent_output_gp_model.py +195 -0
- jaxbo-0.1.1/jaxbo/optimizers.py +146 -0
- jaxbo-0.1.1/jaxbo/serializable.py +140 -0
- jaxbo-0.1.1/jaxbo/test_functions.py +725 -0
- jaxbo-0.1.1/jaxbo/utils.py +481 -0
- jaxbo-0.1.1/jaxbo.egg-info/PKG-INFO +115 -0
- jaxbo-0.1.1/jaxbo.egg-info/SOURCES.txt +31 -0
- jaxbo-0.1.1/jaxbo.egg-info/dependency_links.txt +1 -0
- jaxbo-0.1.1/jaxbo.egg-info/requires.txt +8 -0
- jaxbo-0.1.1/jaxbo.egg-info/top_level.txt +1 -0
- jaxbo-0.1.1/setup.cfg +4 -0
- jaxbo-0.1.1/setup.py +65 -0
jaxbo-0.1.1/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
jaxbo-0.1.1/PKG-INFO
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: jaxbo
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Fork of PredictiveIntelligenceLab/JAX-BO with updates and compatibility improvements for Colab and pipelines
|
|
5
|
+
Home-page: https://github.com/ricardogr07/JAX-BO
|
|
6
|
+
Download-URL: https://github.com/ricardogr07/JAX-BO
|
|
7
|
+
Author: Ricardo García Ramírez
|
|
8
|
+
Author-email: rgr.5882@gmail.com
|
|
9
|
+
License: Apache 2.0
|
|
10
|
+
Project-URL: Source Code, https://github.com/ricardogr07/JAX-BO
|
|
11
|
+
Project-URL: Documentation, https://github.com/ricardogr07/JAX-BO
|
|
12
|
+
Project-URL: Bug Tracker, https://github.com/ricardogr07/JAX-BO/issues
|
|
13
|
+
Keywords: jax,bayesian optimization,machine learning,optimization
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
16
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
+
Classifier: Operating System :: MacOS
|
|
18
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
19
|
+
Classifier: Topic :: Software Development
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering
|
|
21
|
+
Classifier: Intended Audience :: Science/Research
|
|
22
|
+
Classifier: Intended Audience :: Developers
|
|
23
|
+
Requires-Python: >=3.6
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: LICENSE
|
|
26
|
+
Requires-Dist: numpy
|
|
27
|
+
Requires-Dist: scipy
|
|
28
|
+
Requires-Dist: jax
|
|
29
|
+
Requires-Dist: jaxlib
|
|
30
|
+
Requires-Dist: scikit-learn
|
|
31
|
+
Requires-Dist: KDEpy
|
|
32
|
+
Requires-Dist: pyDOE
|
|
33
|
+
Requires-Dist: numpyro
|
|
34
|
+
Dynamic: author
|
|
35
|
+
Dynamic: author-email
|
|
36
|
+
Dynamic: classifier
|
|
37
|
+
Dynamic: description
|
|
38
|
+
Dynamic: description-content-type
|
|
39
|
+
Dynamic: download-url
|
|
40
|
+
Dynamic: home-page
|
|
41
|
+
Dynamic: keywords
|
|
42
|
+
Dynamic: license
|
|
43
|
+
Dynamic: license-file
|
|
44
|
+
Dynamic: project-url
|
|
45
|
+
Dynamic: requires-dist
|
|
46
|
+
Dynamic: requires-python
|
|
47
|
+
Dynamic: summary
|
|
48
|
+
|
|
49
|
+
# JAX-BO (Extended): Bayesian Optimization in JAX
|
|
50
|
+
|
|
51
|
+
This is a modified and extended version of the original [JAX-BO](https://github.com/PredictiveIntelligenceLab/JAX-BO) library for Bayesian optimization, with improved compatibility and enhancements for modern Python and JAX versions.
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## Getting Started
|
|
56
|
+
|
|
57
|
+
### Installation
|
|
58
|
+
|
|
59
|
+
You can install the latest version from PyPI:
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
pip install jaxbo
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Launch the interactive tutorial on Google Colab:
|
|
66
|
+
[](https://colab.research.google.com/github/ricardogr07/JAX-BO/blob/master/jaxbo_colab.ipynb)
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Maintainer and Fork Information
|
|
71
|
+
|
|
72
|
+
This fork is maintained by Ricardo García Ramírez, as of May 2025.
|
|
73
|
+
|
|
74
|
+
### Summary of Modifications
|
|
75
|
+
|
|
76
|
+
- Updated for compatibility with Python 3.12
|
|
77
|
+
- Migrated to recent versions of `jax` and `jaxlib`
|
|
78
|
+
- Fixed and tested all demo notebooks and example scripts
|
|
79
|
+
- Added detailed documentation to all public functions and modules
|
|
80
|
+
- Improved error handling and logging output
|
|
81
|
+
- Refactored and expanded optimizer functionality
|
|
82
|
+
- Clarified model design and acquisition strategy logic
|
|
83
|
+
|
|
84
|
+
> **Note:** This fork is **not affiliated** with the original authors. It is maintained independently to support downstream research applications.
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## Original Project
|
|
89
|
+
|
|
90
|
+
This project is based on the original [JAX-BO](https://github.com/PredictiveIntelligenceLab/JAX-BO) library developed by the [Predictive Intelligence Lab](https://github.com/PredictiveIntelligenceLab) at the University of Pennsylvania.
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## Citation (Original Work)
|
|
95
|
+
|
|
96
|
+
If you use this library in your research, please cite the original authors:
|
|
97
|
+
|
|
98
|
+
```bibtex
|
|
99
|
+
@software{jaxbo2020github,
|
|
100
|
+
author = {Paris Perdikaris, Yibo Yang, Mohamed Aziz Bhouri},
|
|
101
|
+
title = {{JAX-BO}: A Bayesian optimization library in {JAX}},
|
|
102
|
+
url = {https://github.com/PredictiveIntelligenceLab/JAX-BO},
|
|
103
|
+
version = {0.2},
|
|
104
|
+
year = {2020},
|
|
105
|
+
}
|
|
106
|
+
```
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## Changelog ##
|
|
110
|
+
|
|
111
|
+
All modifications and release notes are documented in the [CHANGELOG](CHANGELOG.md) file.
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
## License ##
|
|
115
|
+
This project is licensed under the Apache License 2.0. See the [LICENSE](LICENSE) file for details.
|
jaxbo-0.1.1/README.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# JAX-BO (Extended): Bayesian Optimization in JAX
|
|
2
|
+
|
|
3
|
+
This is a modified and extended version of the original [JAX-BO](https://github.com/PredictiveIntelligenceLab/JAX-BO) library for Bayesian optimization, with improved compatibility and enhancements for modern Python and JAX versions.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Getting Started
|
|
8
|
+
|
|
9
|
+
### Installation
|
|
10
|
+
|
|
11
|
+
You can install the latest version from PyPI:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install jaxbo
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Launch the interactive tutorial on Google Colab:
|
|
18
|
+
[](https://colab.research.google.com/github/ricardogr07/JAX-BO/blob/master/jaxbo_colab.ipynb)
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Maintainer and Fork Information
|
|
23
|
+
|
|
24
|
+
This fork is maintained by Ricardo García Ramírez, as of May 2025.
|
|
25
|
+
|
|
26
|
+
### Summary of Modifications
|
|
27
|
+
|
|
28
|
+
- Updated for compatibility with Python 3.12
|
|
29
|
+
- Migrated to recent versions of `jax` and `jaxlib`
|
|
30
|
+
- Fixed and tested all demo notebooks and example scripts
|
|
31
|
+
- Added detailed documentation to all public functions and modules
|
|
32
|
+
- Improved error handling and logging output
|
|
33
|
+
- Refactored and expanded optimizer functionality
|
|
34
|
+
- Clarified model design and acquisition strategy logic
|
|
35
|
+
|
|
36
|
+
> **Note:** This fork is **not affiliated** with the original authors. It is maintained independently to support downstream research applications.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Original Project
|
|
41
|
+
|
|
42
|
+
This project is based on the original [JAX-BO](https://github.com/PredictiveIntelligenceLab/JAX-BO) library developed by the [Predictive Intelligence Lab](https://github.com/PredictiveIntelligenceLab) at the University of Pennsylvania.
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Citation (Original Work)
|
|
47
|
+
|
|
48
|
+
If you use this library in your research, please cite the original authors:
|
|
49
|
+
|
|
50
|
+
```bibtex
|
|
51
|
+
@software{jaxbo2020github,
|
|
52
|
+
author = {Paris Perdikaris, Yibo Yang, Mohamed Aziz Bhouri},
|
|
53
|
+
title = {{JAX-BO}: A Bayesian optimization library in {JAX}},
|
|
54
|
+
url = {https://github.com/PredictiveIntelligenceLab/JAX-BO},
|
|
55
|
+
version = {0.2},
|
|
56
|
+
year = {2020},
|
|
57
|
+
}
|
|
58
|
+
```
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## Changelog ##
|
|
62
|
+
|
|
63
|
+
All modifications and release notes are documented in the [CHANGELOG](CHANGELOG.md) file.
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
## License ##
|
|
67
|
+
This project is licensed under the Apache License 2.0. See the [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Forked and modified by Ricardo García Ramírez (2025)
|
|
2
|
+
# Original Copyright 2019 Predictive Intelligence Lab
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
__version__ = "0.1.1"
|
|
17
|
+
|
|
18
|
+
from jaxbo import models
|
|
19
|
+
from jaxbo import input_priors
|
|
20
|
+
from jaxbo import utils
|
|
21
|
+
from jaxbo import test_functions
|
|
22
|
+
from jaxbo import kernels
|
|
23
|
+
from jaxbo import initializers
|
|
24
|
+
from jaxbo import optimizers
|
|
25
|
+
from jaxbo import acquisitions
|
|
26
|
+
from jaxbo import mcmc_models
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import jax.numpy as np
|
|
2
|
+
from jax import jit
|
|
3
|
+
from jax.scipy.stats import norm
|
|
4
|
+
|
|
5
|
+
# Caution: all functions are designed for single point evaluation (use vmap to vectorize)
|
|
6
|
+
# See derivation in:
|
|
7
|
+
# https://people.orie.cornell.edu/pfrazier/Presentations/2011.11.INFORMS.Tutorial.pdf
|
|
8
|
+
|
|
9
|
+
@jit
|
|
10
|
+
def EI(mean: np.ndarray, std: np.ndarray, best: float) -> float:
|
|
11
|
+
"""
|
|
12
|
+
Computes the Expected Improvement (EI) acquisition function.
|
|
13
|
+
|
|
14
|
+
Parameters:
|
|
15
|
+
mean (np.ndarray): Predictive mean of the objective function at the point of interest.
|
|
16
|
+
std (np.ndarray): Predictive standard deviation.
|
|
17
|
+
best (float): Best observed value so far.
|
|
18
|
+
|
|
19
|
+
Returns:
|
|
20
|
+
float: Negative expected improvement (for minimization).
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
delta = -(mean - best)
|
|
24
|
+
deltap = np.clip(delta, a_min=0.)
|
|
25
|
+
Z = delta / std
|
|
26
|
+
EI = deltap - np.abs(deltap) * norm.cdf(-Z) + std * norm.pdf(Z)
|
|
27
|
+
return -EI[0]
|
|
28
|
+
|
|
29
|
+
@jit
|
|
30
|
+
def EIC(mean: np.ndarray, std: np.ndarray, best: float) -> float:
|
|
31
|
+
"""
|
|
32
|
+
Computes the Constrained Expected Improvement (EIC) acquisition function.
|
|
33
|
+
|
|
34
|
+
Parameters:
|
|
35
|
+
mean (np.ndarray): Predictive means (first row is objective, remaining are constraints).
|
|
36
|
+
std (np.ndarray): Predictive standard deviations.
|
|
37
|
+
best (float): Best observed objective value.
|
|
38
|
+
|
|
39
|
+
Returns:
|
|
40
|
+
float: Negative constrained expected improvement.
|
|
41
|
+
"""
|
|
42
|
+
delta = -(mean[0, :] - best)
|
|
43
|
+
deltap = np.clip(delta, a_min=0.)
|
|
44
|
+
Z = delta / std[0, :]
|
|
45
|
+
EI = deltap - np.abs(deltap) * norm.cdf(-Z) + std[0, :] * norm.pdf(Z)
|
|
46
|
+
constraints = np.prod(norm.cdf(mean[1:, :] / std[1:, :]), axis=0)
|
|
47
|
+
return -EI[0] * constraints[0]
|
|
48
|
+
|
|
49
|
+
@jit
|
|
50
|
+
def LCBC(mean: np.ndarray, std: np.ndarray, kappa: float = 2.0, threshold: float = 3.0) -> float:
|
|
51
|
+
"""
|
|
52
|
+
Lower Confidence Bound with Constraints.
|
|
53
|
+
|
|
54
|
+
Parameters:
|
|
55
|
+
mean (np.ndarray): Predictive means (first row is objective).
|
|
56
|
+
std (np.ndarray): Predictive standard deviations.
|
|
57
|
+
kappa (float): Confidence interval parameter.
|
|
58
|
+
threshold (float): Threshold value for constraint.
|
|
59
|
+
|
|
60
|
+
Returns:
|
|
61
|
+
float: Constrained LCB acquisition value.
|
|
62
|
+
"""
|
|
63
|
+
lcb = mean[0, :] - threshold - kappa * std[0, :]
|
|
64
|
+
constraints = np.prod(norm.cdf(mean[1:, :] / std[1:, :]), axis=0)
|
|
65
|
+
return lcb[0] * constraints[0]
|
|
66
|
+
|
|
67
|
+
@jit
|
|
68
|
+
def LW_LCBC(mean: np.ndarray, std: np.ndarray, weights: np.ndarray, kappa: float = 2.0, threshold: float = 3.0) -> float:
|
|
69
|
+
"""
|
|
70
|
+
Log-Weighted Lower Confidence Bound with Constraints.
|
|
71
|
+
|
|
72
|
+
Parameters:
|
|
73
|
+
mean (np.ndarray): Predictive means.
|
|
74
|
+
std (np.ndarray): Predictive standard deviations.
|
|
75
|
+
weights (np.ndarray): Log-weighted factors.
|
|
76
|
+
kappa (float): Confidence interval parameter.
|
|
77
|
+
threshold (float): Constraint threshold.
|
|
78
|
+
|
|
79
|
+
Returns:
|
|
80
|
+
float: Weighted constrained LCB acquisition value.
|
|
81
|
+
"""
|
|
82
|
+
lcb = mean[0, :] - threshold - kappa * std[0, :] * weights
|
|
83
|
+
constraints = np.prod(norm.cdf(mean[1:, :] / std[1:, :]), axis=0)
|
|
84
|
+
return lcb[0] * constraints[0]
|
|
85
|
+
|
|
86
|
+
@jit
|
|
87
|
+
def LCB(mean: np.ndarray, std: np.ndarray, kappa: float = 2.0) -> float:
|
|
88
|
+
"""
|
|
89
|
+
Lower Confidence Bound (LCB) acquisition function.
|
|
90
|
+
|
|
91
|
+
Parameters:
|
|
92
|
+
mean (np.ndarray): Predictive mean.
|
|
93
|
+
std (np.ndarray): Predictive standard deviation.
|
|
94
|
+
kappa (float): Confidence parameter.
|
|
95
|
+
|
|
96
|
+
Returns:
|
|
97
|
+
float: LCB value.
|
|
98
|
+
"""
|
|
99
|
+
lcb = mean - kappa * std
|
|
100
|
+
return lcb[0]
|
|
101
|
+
|
|
102
|
+
@jit
|
|
103
|
+
def US(std: np.ndarray) -> float:
|
|
104
|
+
"""
|
|
105
|
+
Uncertainty Sampling acquisition function.
|
|
106
|
+
|
|
107
|
+
Parameters:
|
|
108
|
+
std (np.ndarray): Predictive standard deviation.
|
|
109
|
+
|
|
110
|
+
Returns:
|
|
111
|
+
float: Negative uncertainty value.
|
|
112
|
+
"""
|
|
113
|
+
return -std[0]
|
|
114
|
+
|
|
115
|
+
@jit
|
|
116
|
+
def LW_LCB(mean: np.ndarray, std: np.ndarray, weights: np.ndarray, kappa: float = 2.0) -> float:
|
|
117
|
+
"""
|
|
118
|
+
Log-Weighted Lower Confidence Bound.
|
|
119
|
+
|
|
120
|
+
Parameters:
|
|
121
|
+
mean (np.ndarray): Predictive mean.
|
|
122
|
+
std (np.ndarray): Predictive standard deviation.
|
|
123
|
+
weights (np.ndarray): Importance weights.
|
|
124
|
+
kappa (float): Confidence parameter.
|
|
125
|
+
|
|
126
|
+
Returns:
|
|
127
|
+
float: LW-LCB value.
|
|
128
|
+
"""
|
|
129
|
+
lw_lcb = mean - kappa * std * weights
|
|
130
|
+
return lw_lcb[0]
|
|
131
|
+
|
|
132
|
+
@jit
|
|
133
|
+
def LW_US(std: np.ndarray, weights: np.ndarray) -> float:
|
|
134
|
+
"""
|
|
135
|
+
Log-Weighted Uncertainty Sampling.
|
|
136
|
+
|
|
137
|
+
Parameters:
|
|
138
|
+
std (np.ndarray): Predictive standard deviation.
|
|
139
|
+
weights (np.ndarray): Importance weights.
|
|
140
|
+
|
|
141
|
+
Returns:
|
|
142
|
+
float: Weighted negative uncertainty.
|
|
143
|
+
"""
|
|
144
|
+
lw_us = std * weights
|
|
145
|
+
return -lw_us[0]
|
|
146
|
+
|
|
147
|
+
@jit
|
|
148
|
+
def CLSF(mean: np.ndarray, std: np.ndarray, kappa: float = 1.0) -> float:
|
|
149
|
+
"""
|
|
150
|
+
Classification Surrogate Function acquisition.
|
|
151
|
+
|
|
152
|
+
Parameters:
|
|
153
|
+
mean (np.ndarray): Predictive mean.
|
|
154
|
+
std (np.ndarray): Predictive standard deviation.
|
|
155
|
+
kappa (float): Regularization coefficient.
|
|
156
|
+
|
|
157
|
+
Returns:
|
|
158
|
+
float: CLSF value.
|
|
159
|
+
"""
|
|
160
|
+
acq = np.log(np.abs(mean) + 1e-8) - kappa * np.log(std + 1e-8)
|
|
161
|
+
return acq[0]
|
|
162
|
+
|
|
163
|
+
@jit
|
|
164
|
+
def LW_CLSF(mean: np.ndarray, std: np.ndarray, weights: np.ndarray, kappa: float = 1.0) -> float:
|
|
165
|
+
"""
|
|
166
|
+
Log-Weighted Classification Surrogate Function acquisition.
|
|
167
|
+
|
|
168
|
+
Parameters:
|
|
169
|
+
mean (np.ndarray): Predictive mean.
|
|
170
|
+
std (np.ndarray): Predictive standard deviation.
|
|
171
|
+
weights (np.ndarray): Importance weights.
|
|
172
|
+
kappa (float): Regularization coefficient.
|
|
173
|
+
|
|
174
|
+
Returns:
|
|
175
|
+
float: Weighted CLSF value.
|
|
176
|
+
"""
|
|
177
|
+
acq = np.log(np.abs(mean) + 1e-8) - kappa * (np.log(std + 1e-8) + np.log(weights + 1e-8))
|
|
178
|
+
return acq[0]
|