bartz 0.6.0__py3-none-any.whl → 0.7.0__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.
- bartz/BART.py +464 -254
- bartz/__init__.py +2 -2
- bartz/_version.py +1 -1
- bartz/debug.py +1259 -79
- bartz/grove.py +139 -93
- bartz/jaxext/__init__.py +213 -0
- bartz/jaxext/_autobatch.py +238 -0
- bartz/jaxext/scipy/__init__.py +25 -0
- bartz/jaxext/scipy/special.py +240 -0
- bartz/jaxext/scipy/stats.py +36 -0
- bartz/mcmcloop.py +468 -311
- bartz/mcmcstep.py +734 -453
- bartz/prepcovars.py +139 -43
- {bartz-0.6.0.dist-info → bartz-0.7.0.dist-info}/METADATA +2 -3
- bartz-0.7.0.dist-info/RECORD +17 -0
- {bartz-0.6.0.dist-info → bartz-0.7.0.dist-info}/WHEEL +1 -1
- bartz/jaxext.py +0 -423
- bartz-0.6.0.dist-info/RECORD +0 -13
bartz/__init__.py
CHANGED
|
@@ -28,5 +28,5 @@ Super-fast BART (Bayesian Additive Regression Trees) in Python.
|
|
|
28
28
|
See the manual at https://gattocrucco.github.io/bartz/docs
|
|
29
29
|
"""
|
|
30
30
|
|
|
31
|
-
from
|
|
32
|
-
from ._version import __version__ # noqa: F401
|
|
31
|
+
from bartz import BART, grove, jaxext, mcmcloop, mcmcstep, prepcovars # noqa: F401
|
|
32
|
+
from bartz._version import __version__ # noqa: F401
|
bartz/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.
|
|
1
|
+
__version__ = '0.7.0'
|