emcal 0.0.1__py3-none-any.whl
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.
emcal/__init__.py
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: emcal
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Gaussian-process Bayesian optimization for nonlinear model calibration
|
|
5
|
+
Author-email: Montana Carlozo <mcarlozo@nd.edu>, Alexander Dowling <adowling@nd.edu>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/DowlingLab/emcal
|
|
8
|
+
Project-URL: Repository, https://github.com/DowlingLab/emcal
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
Dynamic: license-file
|
|
18
|
+
|
|
19
|
+
# emcal
|
|
20
|
+
|
|
21
|
+
`emcal` is a Python package for emulator-based Gaussian-process Bayesian optimization
|
|
22
|
+
(GPBO) for nonlinear model calibration. It implements the methods described in:
|
|
23
|
+
|
|
24
|
+
> Carlozo, M., Wang, ..., Dowling, A. W. "Bayesian Optimization Methods for Nonlinear
|
|
25
|
+
> Model Calibration." *Industrial & Engineering Chemistry Research*, 2025.
|
|
26
|
+
|
|
27
|
+
**This is an early placeholder release.** It reserves the `emcal` name on PyPI while the
|
|
28
|
+
full implementation is refactored and prepared for public release; it does not yet
|
|
29
|
+
contain the library's functionality. Watch this repository for updates.
|
|
30
|
+
|
|
31
|
+
## Installation
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install emcal
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
MIT
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
emcal/__init__.py,sha256=fRgz_-FZ2guC50UAHZiMYap2R33Ycj-TCzkOm5553G8,108
|
|
2
|
+
emcal-0.0.1.dist-info/licenses/LICENSE,sha256=WrmZojheBUDipzv5EbMMSFH6-CVFX2O_RJtUwH1ENuI,1091
|
|
3
|
+
emcal-0.0.1.dist-info/METADATA,sha256=0ATVh3Z1tjIYQBTA9ZLMxM4tCdG26qyeySWWm8dVe4w,1343
|
|
4
|
+
emcal-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
5
|
+
emcal-0.0.1.dist-info/top_level.txt,sha256=oz_5HQrIGQDoTbe3bLfjKushjJGaKPvVYWsQfupBnIo,6
|
|
6
|
+
emcal-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Montana Carlozo, Alexander Dowling
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
emcal
|