pyBayesPPR 1.0.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.
- pybayesppr-1.0.1/LICENSE +29 -0
- pybayesppr-1.0.1/PKG-INFO +20 -0
- pybayesppr-1.0.1/README.md +21 -0
- pybayesppr-1.0.1/pyBayesPPR/__init__.py +19 -0
- pybayesppr-1.0.1/pyBayesPPR/pyBayesPPR.py +1287 -0
- pybayesppr-1.0.1/pyBayesPPR/test.py +31 -0
- pybayesppr-1.0.1/pyBayesPPR.egg-info/PKG-INFO +20 -0
- pybayesppr-1.0.1/pyBayesPPR.egg-info/SOURCES.txt +12 -0
- pybayesppr-1.0.1/pyBayesPPR.egg-info/dependency_links.txt +1 -0
- pybayesppr-1.0.1/pyBayesPPR.egg-info/not-zip-safe +1 -0
- pybayesppr-1.0.1/pyBayesPPR.egg-info/requires.txt +2 -0
- pybayesppr-1.0.1/pyBayesPPR.egg-info/top_level.txt +1 -0
- pybayesppr-1.0.1/setup.cfg +4 -0
- pybayesppr-1.0.1/setup.py +16 -0
pybayesppr-1.0.1/LICENSE
ADDED
|
@@ -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,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyBayesPPR
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Bayesian Projection Pursuit Regression
|
|
5
|
+
Home-page: https://github.com/gqcollins/pyBayesPPR.git
|
|
6
|
+
Author: Gavin Collins
|
|
7
|
+
Author-email: gqcolli@sandia.gov
|
|
8
|
+
License: BSD-3
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Requires-Dist: numpy
|
|
12
|
+
Requires-Dist: scipy
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: license
|
|
17
|
+
Dynamic: license-file
|
|
18
|
+
Dynamic: requires-dist
|
|
19
|
+
Dynamic: requires-python
|
|
20
|
+
Dynamic: summary
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# pyBayesPPR
|
|
2
|
+
[![Build Status][build-status-img]](https://github.com/gqcollins/pyBayesPPR/actions)
|
|
3
|
+
[](https://badge.fury.io/py/pyBayesPPR/)
|
|
4
|
+
|
|
5
|
+
A python implementation of Bayesian Projection Pursuit Regression (BayesPPR).
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
Use for pypi
|
|
9
|
+
```bash
|
|
10
|
+
pip install pyBayesPPR
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
and for latest development version
|
|
14
|
+
```bash
|
|
15
|
+
pip install git+https://github.com/gqcollins/pyBayesPPR.git
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
************
|
|
20
|
+
|
|
21
|
+
Author: Gavin Collins
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""
|
|
2
|
+
A python package for Bayesian Projection Pursuit Regression
|
|
3
|
+
|
|
4
|
+
"""
|
|
5
|
+
__all__ = ["pyBayesPPR"]
|
|
6
|
+
|
|
7
|
+
__version__ = "0.1"
|
|
8
|
+
|
|
9
|
+
import sys
|
|
10
|
+
|
|
11
|
+
if sys.version_info[0] == 3 and sys.version_info[1] < 6:
|
|
12
|
+
raise ImportError("Python Version 3.6 or above is required for pyBASS.")
|
|
13
|
+
else: # Python 3
|
|
14
|
+
pass
|
|
15
|
+
# Here we can also check for specific Python 3 versions, if needed
|
|
16
|
+
|
|
17
|
+
del sys
|
|
18
|
+
|
|
19
|
+
from .pyBayesPPR import *
|