JakeColtman / bartpy

Bayesian Additive Regression Trees For Python
https://jakecoltman.github.io/bartpy/
MIT License
219 stars 44 forks source link

Support multiple chains #30

Closed JakeColtman closed 5 years ago

JakeColtman commented 5 years ago

This seems like a pretty easy win given how parallelizable the different chains are.

The current solution is to follow sklearn and pymc in using joblib to handle the parallelization. A nice feature of this is that it looks relatively easy to make this solution scale into a full dask cluster approach.

JakeColtman commented 5 years ago

Fixes #29