Skip to main content

Python Decision Tree Analysis

Project description

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.

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

DTAnalyze-1.0.tar.gz (127.0 kB view details)

Uploaded Source

File details

Details for the file DTAnalyze-1.0.tar.gz.

File metadata

  • Download URL: DTAnalyze-1.0.tar.gz
  • Upload date:
  • Size: 127.0 kB
  • Tags: Source
  • Uploaded using 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

File hashes

Hashes for DTAnalyze-1.0.tar.gz
Algorithm Hash digest
SHA256 2a07155d504b683664f717ca185d8d06220755670e7367cb1b8c862e20aa6203
MD5 7e650b03250f7856d469012d93bb1a31
BLAKE2b-256 17b244e286c9268e6d8754f6740ce76bb6b87bb29e1c354ae28b26acb8f81654

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page