Skip to main content

Python implementation of knowledge discovery methods

Project description

realkd.py

Methods for knowledge discovery from data and interpretable machine learning. Currently, package contains primarily rule ensembles learners.

 >>> import pandas as pd
 >>> titanic = pd.read_csv('../datasets/titanic/train.csv')
 >>> survived = titanic.Survived
 >>> titanic.drop(columns=['PassengerId', 'Name', 'Ticket', 'Cabin', 'Survived'], inplace=True)
 >>> re = GradientBoostingRuleEnsemble(loss=logistic_loss)
 >>> re.fit(titanic, survived.replace(0, -1), verbose=0) 
    -1.4248 if Pclass>=2 & Sex==male
    +1.7471 if Pclass<=2 & Sex==female
    +2.5598 if Age<=19.0 & Fare>=7.8542 & Parch>=1.0 & Sex==male & SibSp<=1.0

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

realkd-0.1.0.tar.gz (17.7 kB view hashes)

Uploaded Source

Supported by

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