Python wrappers for using BoostSRL jar files.
Project description
boostsrl is a set of Python wrappers around BoostSRL with a scikit-learn interface.
Documentation: https://boostsrl.readthedocs.io/en/latest/
Questions? Contact Alexander L. Hayes (hayesall)
Getting Started
Prerequisites:
Java 1.8
Python (3.6, 3.7)
Installation
pip install boostsrl
Basic Usage
The general setup should be similar to scikit-learn. But there are a few extra requirements in terms of setting background knowledge and formatting the data.
A minimal working example (using the Toy-Cancer data set imported with ‘example_data’) is:
>>> from boostsrl.rdn import RDN
>>> from boostsrl import Background
>>> from boostsrl import example_data
>>> bk = Background(
... modes=example_data.train.modes,
... use_std_logic_variables=True,
... )
>>> clf = RDN(
... background=bk,
... target='cancer',
... )
>>> clf.fit(example_data.train)
>>> clf.predict_proba(example_data.test)
array([0.88079619, 0.88079619, 0.88079619, 0.3075821 , 0.3075821 ])
>>> clf.classes_
array([1., 1., 1., 0., 0.])
example_data.train and example_data.test are each boostsrl.Database objects, so this hides some of the complexity behind the scenes.
This example abstracts away some complexity in exchange for compactness. For more thorough examples, see the ‘docs/examples/’ directory.
Contributing
We have adopted the Contributor Covenant Code of Conduct version 1.4. Please read, follow, and report any incidents which violate this.
Questions, Issues, and Pull Requests are welcome. Please refer to CONTRIBUTING.md for information on submitting issues and pull requests.
Versioning and Releases
We use SemVer for versioning. See Releases for stable versions that are available, or the Project Page on PyPi.
Project details
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 boostsrl-0.4.3.tar.gz
.
File metadata
- Download URL: boostsrl-0.4.3.tar.gz
- Upload date:
- Size: 4.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3a3751d054cd89410e91e241a7e7d57e646979d699355c6f51bef0a3149a97f |
|
MD5 | a73a37838c866547b03df778b5b544df |
|
BLAKE2b-256 | e4a2b53a5965487f81915d0cefb63016ccb84ca91496b2990c1745b13ca68423 |
File details
Details for the file boostsrl-0.4.3-py3-none-any.whl
.
File metadata
- Download URL: boostsrl-0.4.3-py3-none-any.whl
- Upload date:
- Size: 4.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69f799ed5dd0ff712f704daebf540ae0b886e977b07c559aa11b3d37718bdf7a |
|
MD5 | af6d496c38a014eb909a79fcba54879a |
|
BLAKE2b-256 | 90a46d3db66b5f7f12bdffa1b8b0adae8e757e7e2d518560277055ced348529c |