Bayesian Additive Regression Trees for Probabilistic programming with PyMC
Project description
Bayesian Additive Regression Trees for Probabilistic Programming with PyMC
PyMC-BART extends PyMC probabilistic programming framework to be able to define and solve models including a BART random variable. PyMC-BART also includes a few helpers function to aid with the interpretation of those models and perform variable selection.
Table of Contents
Installation
PyMC-BART is available on Conda-Forge. If you magange your Python dependencies and environments with Conda, this is your best option. You may also perfer to install this way if you want an easy-to-use, isolated setup in a seperate environment. This helps avoid interfering with other projects or system-wide Python installations. To set up a suitable Conda environment, run:
conda create --name=pymc-bart --channel=conda-forge pymc-bart
conda activate pymc-bart
Alternatively, you can use pip installation. This installation is generally perfered by users who use pip, Python's package installer. This is the best choice for users who are not using Conda or for those who want to install PyMC-BART into a virtual environment managed by venv or virtualenv. In this case, run:
pip install pymc-bart
In case you want to upgrade to the bleeding edge version of the package you can install from GitHub:
pip install git+https://github.com/pymc-devs/pymc-bart.git
Usage
Get started by using PyMC-BART to set up a BART model:
import pymc as pm
import pymc_bart as pmb
X, y = ... # Your data replaces "..."
with pm.Model() as model:
bart = pmb.BART('bart', X, y)
...
idata = pm.sample()
Contributions
PyMC-BART is a community project and welcomes contributions. Additional information can be found in the Contributing Readme
Code of Conduct
PyMC-BART wishes to maintain a positive community. Additional details can be found in the Code of Conduct
Citation
If you use PyMC-BART and want to cite it please use
Here is the citation in BibTeX format
@misc{quiroga2023bayesian,
title={Bayesian additive regression trees for probabilistic programming},
author={Quiroga, Miriana and Garay, Pablo G and Alonso, Juan M. and Loyola, Juan Martin and Martin, Osvaldo A},
year={2023},
doi={10.48550/ARXIV.2206.03619},
archivePrefix={arXiv},
primaryClass={stat.CO}
}
License
Donations
PyMC-BART , as other pymc-devs projects, is a non-profit project under the NumFOCUS umbrella. If you want to support PyMC-BART financially, you can donate here.
Sponsors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pymc_bart-0.5.11.tar.gz
.
File metadata
- Download URL: pymc_bart-0.5.11.tar.gz
- Upload date:
- Size: 35.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 235a5aa8689eacf968c46d2eab5abda84556c03abdeff3a6a6bee86a0caf6c87 |
|
MD5 | 49f029493fe770f4abbce3a3f1b9c934 |
|
BLAKE2b-256 | f3c6e4db4ba76d676f2510a1a70b5a0a598a285c7cec080d9d948ad633bfb542 |
Provenance
File details
Details for the file pymc_bart-0.5.11-py3-none-any.whl
.
File metadata
- Download URL: pymc_bart-0.5.11-py3-none-any.whl
- Upload date:
- Size: 34.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 160b5fa8533707d7a78f74c6af5664d59e895659ffd7966be0e17bdef4ad9f1f |
|
MD5 | dca1071e02cbd4ec9ff784230243d07d |
|
BLAKE2b-256 | e6f5b2f6bb99b98df7557156686b9635d9b65a81bd55a016b36b9dae847a809f |