DTAnalyze
Functions to estimate importance of features in determining predictions for individual samples (aka "feature activations"). Fast nogil implementation in Cython.
Example Usage
import numpy as np
from sklearn.ensemble import RandomForestRegressor
from DTAnalyze.Activation import GetActivations
A = np.random.rand(256, 3)
Y = (2 * (A[:, 0] > 0.5) - (A[:, 1] < 0.5) -
(A[:, 2] > 0.5) + np.random.normal(0, 0.1, size=256))
rfr = RandomForestRegressor(n_jobs=4).fit(A, Y)
L1 = GetActivations(rfr, A)
Install
python setup.py build_ext
Then copy build artifact into DTAnalyze (sub) folder and put that folder somewhere in your path.
Release files for DTAnalyze 1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| DTAnalyze-1.0.tar.gz | 127.0 kB | Details |
Release files / DTAnalyze-1.0.tar.gz
| Download URL | DTAnalyze-1.0.tar.gz |
|---|---|
| Size | 127.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2a07155d504b683664f717ca185d8d06220755670e7367cb1b8c862e20aa6203
|
|
BLAKE2b-256 checksum How to use checksums |
17b244e286c9268e6d8754f6740ce76bb6b87bb29e1c354ae28b26acb8f81654
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.8
|