Transparent, Robust & Ultra-Sparse Trees (TRUST) - Free Version
Project description
trust
Transparent, Robust & Ultra-Sparse Trees (TRUST) - Free Version
This package provides the free version of our TRUST algorithm, a SOTA interpretable machine learning model.
Installation
You can install this package using pip:
pip install trust
Note: This package includes a precompiled binary and is currently only compatible with macOS 11+ on ARM64 architecture.
Usage
Here are two basic examples of how to use the TRUST algorithm:
from trust import TRUST
import pandas as pd
from sklearn import datasets
Diabetes = pd.DataFrame(datasets.load_diabetes().data)
Diabetes.columns = datasets.load_diabetes().feature_names
diab_target = datasets.load_diabetes().target
Diabetes.insert(len(Diabetes.columns), "Disease_marker", diab_target)
Diabetes_X = Diabetes.iloc[:,:-1]
Diabetes_y = Diabetes.iloc[:,-1]
RLT_Diabetes = TRUST()
RLT_Diabetes.fit(Diabetes_X,Diabetes_y)
y_pred_TRUST = RLT_Diabetes.predict(Diabetes_X)
from sklearn.datasets import make_regression
from sklearn.model_selection import train_test_split
from sklearn.metrics import r2_score, mean_squared_error
# Generate synthetic regression data
X, y, coefs = make_regression(n_samples=5000, n_features=20, n_informative=10, coef=True, noise=0.1, random_state=123)
coefs
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=123)
# Instantiate and fit your model
model = TRUST()
model.fit(X_train, y_train)
# Predict and print results
y_pred = model.predict(X_test)
print("Predictions:", y_pred[:5])
print("True y values:", y_test[:5])
print("test R^2:", r2_score(y_test, y_pred))
model.explain(X_test[0,:], y_pred[0], actual=y_test[0])
model.varImp(X_test, y_test, model, corAnalysis=True)
License
This software is provided under a Proprietary - Permissive Binary Only license. For detailed terms, please refer to the LICENSE file included with the distribution.
More Information
For more details, documentation, and information about the full (paid) version of the TRUST algorithm, please visit our official website:
https://adc-trust-ai.github.io/trust/
Further details can be found in our preprint on arxiv:
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 Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file trust_free-0.9.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: trust_free-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 605.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88c5393b61791dbff3f40247f34eda071cd7ed051db1c6cbbec6be168b2c88ee
|
|
| MD5 |
0bc6f29c424e4d175440716ca377b928
|
|
| BLAKE2b-256 |
e322f457559c26ca1b2caa51b8693df922602c6a719628b3c6d4fd80234c2f00
|