impala-calib 0.3.0__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.
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2021, Los Alamos National Laboratory
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ 3. Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,50 @@
1
+ Metadata-Version: 2.4
2
+ Name: impala-calib
3
+ Version: 0.3.0
4
+ Summary: Bayesian model calibration
5
+ Author-email: Devin Francom <dfrancom@lanl.gov>
6
+ License-Expression: BSD-3-Clause
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: matplotlib>=3.7.3
11
+ Requires-Dist: numpy>=1.24.4
12
+ Requires-Dist: scipy>=1.10.1
13
+ Requires-Dist: seaborn>=0.13.2
14
+ Dynamic: license-file
15
+
16
+ # impala
17
+ [![CI Status][ci-status-img]](https://github.com/lanl/impala/actions)
18
+
19
+ Python tools for modular Bayesian model calibration. Posterior exploration
20
+ includes tempering and adaptive MCMC.
21
+
22
+ ## Installation
23
+ Use
24
+ ```bash
25
+ pip install git+https://github.com/lanl/impala.git
26
+ ```
27
+
28
+ ## Examples
29
+ * [Example 1](examples/ex_friedman.ipynb)
30
+
31
+ ## References
32
+
33
+ ************
34
+
35
+ Copyright 2020. Triad National Security, LLC. All rights reserved.
36
+ This program was produced under U.S. Government contract 89233218CNA000001 for
37
+ Los Alamos National Laboratory (LANL), which is operated by Triad National
38
+ Security, LLC for the U.S. Department of Energy/National Nuclear Security
39
+ Administration. All rights in the program are reserved by Triad National
40
+ Security, LLC, and the U.S. Department of Energy/National Nuclear Security
41
+ Administration. The Government is granted for itself and others acting on its
42
+ behalf a nonexclusive, paid-up, irrevocable worldwide license in this material
43
+ to reproduce, prepare derivative works, distribute copies to the public, perform
44
+ publicly and display publicly, and to permit others to do so.
45
+
46
+ LANL software release C19112
47
+
48
+ Authors: Devin Francom, Peter Trubey, others
49
+
50
+ [ci-status-img]: https://github.com/lanl/impala/workflows/CI/badge.svg
@@ -0,0 +1,35 @@
1
+ # impala
2
+ [![CI Status][ci-status-img]](https://github.com/lanl/impala/actions)
3
+
4
+ Python tools for modular Bayesian model calibration. Posterior exploration
5
+ includes tempering and adaptive MCMC.
6
+
7
+ ## Installation
8
+ Use
9
+ ```bash
10
+ pip install git+https://github.com/lanl/impala.git
11
+ ```
12
+
13
+ ## Examples
14
+ * [Example 1](examples/ex_friedman.ipynb)
15
+
16
+ ## References
17
+
18
+ ************
19
+
20
+ Copyright 2020. Triad National Security, LLC. All rights reserved.
21
+ This program was produced under U.S. Government contract 89233218CNA000001 for
22
+ Los Alamos National Laboratory (LANL), which is operated by Triad National
23
+ Security, LLC for the U.S. Department of Energy/National Nuclear Security
24
+ Administration. All rights in the program are reserved by Triad National
25
+ Security, LLC, and the U.S. Department of Energy/National Nuclear Security
26
+ Administration. The Government is granted for itself and others acting on its
27
+ behalf a nonexclusive, paid-up, irrevocable worldwide license in this material
28
+ to reproduce, prepare derivative works, distribute copies to the public, perform
29
+ publicly and display publicly, and to permit others to do so.
30
+
31
+ LANL software release C19112
32
+
33
+ Authors: Devin Francom, Peter Trubey, others
34
+
35
+ [ci-status-img]: https://github.com/lanl/impala/workflows/CI/badge.svg
@@ -0,0 +1,49 @@
1
+ [project]
2
+ name = "impala-calib"
3
+ dynamic = ["version"]
4
+ description = "Bayesian model calibration"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Devin Francom", email = "dfrancom@lanl.gov" }
8
+ ]
9
+ requires-python = ">=3.10"
10
+ dependencies = [
11
+ "matplotlib>=3.7.3",
12
+ "numpy>=1.24.4",
13
+ "scipy>=1.10.1",
14
+ "seaborn>=0.13.2",
15
+ ]
16
+
17
+ license = "BSD-3-Clause"
18
+ license-files = ["LICENSE"]
19
+
20
+ [build-system]
21
+ requires = ["setuptools>=68.1", "versioningit"]
22
+ build-backend = "setuptools.build_meta"
23
+
24
+ [tool.versioningit.vcs]
25
+ method = "git"
26
+ default-tag = "0.0.1"
27
+
28
+ [dependency-groups]
29
+ dev = [
30
+ "pre-commit>=4.4.0",
31
+ "pytest>=9.0.1",
32
+ ]
33
+ numba = [
34
+ "numba>=0.62.1",
35
+ ]
36
+
37
+ [tool.ruff]
38
+ line-length = 80
39
+ preview = true
40
+
41
+ [tool.ruff.lint]
42
+ extend-select = ["I"] # W505 (doc-line-too-long); D (pydocstyle)
43
+ pydocstyle.convention = "numpy"
44
+ pycodestyle.max-doc-length = 80
45
+
46
+ # Ignore test file documentation linting.
47
+ [tool.ruff.lint.extend-per-file-ignores]
48
+ "tests/**/*.py" = ["D"]
49
+ "src/**/__init__.py" = ["F", "E402"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes
@@ -0,0 +1 @@
1
+ from .physical_models_vec import *