You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/index.rst
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,13 +19,32 @@ PyMC-BART
19
19
Bayesian Additive Regression Trees for Probabilistic programming with PyMC
20
20
21
21
22
+
Overview
23
+
============
24
+
PyMC-BART extends `PyMC <https://github.com/pymc-devs/pymc>`_. probabilistic programming framework to be able to define
25
+
and solve models including a BART random variable. PyMC-BART also includes a few helpers function to help interpret
26
+
those models and perform variable selection.
27
+
28
+
22
29
Dependencies
23
30
============
24
31
PyMC-BART is tested on Python 3.8+ and depends on PyMC V4.
25
32
33
+
26
34
Installation
27
35
============
28
36
37
+
38
+
PyMC-BART requires a working Python interpreter (3.8+). We recommend installing Python and key numerical libraries using the `Anaconda distribution <https://www.anaconda.com/products/individual#Downloads>`_, which has one-click installers available on all major platforms.
39
+
40
+
Assuming a standard Python environment is installed on your machine (including pip), PyMC-BART itself can be installed in one line using pip:
41
+
42
+
.. code-block:: bash
43
+
44
+
pip install pymc-bart
45
+
46
+
Alternatively, if you want the bleeding edge version of the package you can install from GitHub:
0 commit comments