Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Open Bayesian Trees Project

**NOTE: This repository has been merged with the original OpenBT repository, which this repository was based on. The contents of this repository will not be developed further nor will they be maintained. Please see the new [OpenBT repository](https://github.com/bandframework/OpenBT) to use the latest and greatest OpenBT implementation.**

This repository includes new developments with Bayesian Additive Regression Trees and extends the original OpenBT repository created by Matt Pratola (https://bitbucket.org/mpratola/openbt/src/master/).
Such extensions include Bayesian Model Mixing and Bayesian Calibration.
All of the Bayesian Tree code is written in C++. User interfaces constructed in R and Python allow one to easily run the software.
Expand Down
2 changes: 1 addition & 1 deletion openbtmixing_pypkg/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.3
1.1.4
3 changes: 2 additions & 1 deletion openbtmixing_pypkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ def version():
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
classifiers=[
"Programming Language :: Python :: 3"
"Programming Language :: Python :: 3",
"Development Status :: 7 - Inactive"
]
)
7 changes: 7 additions & 0 deletions openbtmixing_pypkg/src/openbtmixing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@
from .test import test

__version__ = version("openbtmixing")

print()
print(
"WARNING - This package is no longer supported.\n"
"Consider using its replacment https://github.com/bandframework/OpenBT"
)
print()
Loading