Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

PSyKE

PSyKE Logo

Quick links:

Latest Releases

  • PSyKE 1.0: Compatibility with Python 3.11.x
  • PSyKE 0.10: New genetic algorithms for knowledge extraction
  • PSyKE 0.9: Fairness mitigation support for knowedge extractors
  • PSyKE 0.8: New features: local explainability and counterfactual support
  • PSyKE 0.7: New SKE algorithms implemented

Intro

PSyKE (Platform for Symbolic Knowledge Extraction) is intended as a library for extracting symbolic knowledge (in the form of logic rule lists) out of sub-symbolic predictors.

More precisely, PSyKE offers a general purpose API for knowledge extraction, and a number of different algorithms implementing it, supporting both classification and regression problems. The extracted knowledge consists of a Prolog theory (i.e., a list of Horn clauses) or an OWL ontology containing SWRL rules.

PSyKE relies on 2ppy (tuProlog in Python) for logic support, which in turn is based on the 2p-Kt logic ecosystem.

Class diagram overview:

PSyKE class diagram

PSyKE is designed around the notion of extractor. More precisely, an Extractor is any object capable of extracting a logic Theory out of a trained sub-symbolic regressor or classifier. Accordingly, an Extractor is composed of (i) a trained predictor (i.e., black-box used as an oracle) and (ii) a set of feature descriptors, and it provides two methods:

  • extract: returns a logic theory given a dataset;
  • predict: predicts a value using the extracted rules (instead of the original predictor).

Currently, the supported extraction algorithms are:

  • CART, straightforward extracts rules from both classification and regression decision trees;
  • Classification:
    • REAL (Rule Extraction As Learning), generates and generalizes rules strarting from dataset samples;
    • Trepan, generates rules by inducing a decision tree and possibly exploiting m-of-n expressions;
  • Regression:
    • ITER, builds and iteratively expands hypercubes in the input space. Each cube holds a constant value, that is the estimated output for the samples inside the cube;
    • GridEx, extension of the ITER algorithm that produces shorter rule lists retaining higher fidelity w.r.t. the predictor.
    • GridREx, extension of GridEx where the output of each hypercube is a linear combination of the input variables and not a constant value.

Users may exploit the PEDRO algorithm, included in PSyKE, to tune the optimal values for GridEx and GridREx hyper-parameters.

We are working on PSyKE to extend its features to encompass explainable clustering tasks, as well as to make more general-purpose the supported extraction algorithms (e.g., by adding classification support to GridEx and GridREx).

Users

End users

PSyKE is deployed as a library on Pypi. It can be installed as Python package by running:

pip install psyke

Requirements

Please refer to the requirements file

Test requirements
  • skl2onnx
  • onnxruntime
  • parameterized

Once installed, it is possible to create an extractor from a predictor (e.g. Neural Network, Support Vector Machine, K-Nearest Neighbours, Random Forest, etc.) and from the data set used to train the predictor.

Note: the predictor must expose a method named predict to be properly used as an oracle.

End users

A brief example is presented in demo.py script in the demo/ folder. Using sklearn's Iris data set we train a K-Nearest Neighbours to predict the correct output class. Before training, we make the dataset discrete. After that we create two different extractors: REAL and Trepan. We output the extracted theory for both extractors.

REAL extracted rules:

iris(PetalLength, PetalWidth, SepalLength, SepalWidth, setosa) :- PetalWidth =< 1.0.
iris(PetalLength1, PetalWidth1, SepalLength1, SepalWidth1, versicolor) :- PetalLength1 > 4.9, SepalWidth1 in [2.9, 3.2].
iris(PetalLength2, PetalWidth2, SepalLength2, SepalWidth2, versicolor) :- PetalWidth2 > 1.6.
iris(PetalLength3, PetalWidth3, SepalLength3, SepalWidth3, virginica) :- SepalWidth3 =< 2.9.
iris(PetalLength4, PetalWidth4, SepalLength4, SepalWidth4, virginica) :- SepalLength4 in [5.4, 6.3].
iris(PetalLength5, PetalWidth5, SepalLength5, SepalWidth5, virginica) :- PetalWidth5 in [1.0, 1.6].

Trepan extracted rules:

iris(PetalLength6, PetalWidth6, SepalLength6, SepalWidth6, virginica) :- PetalLength6 > 3.0, PetalLength6 in [3.0, 4.9].
iris(PetalLength7, PetalWidth7, SepalLength7, SepalWidth7, versicolor) :- PetalLength7 > 3.0.
iris(PetalLength8, PetalWidth8, SepalLength8, SepalWidth8, setosa) :- true.

Developers

Working with PSyKE codebase requires a number of tools to be installed:

  • Python 3.11

    • Python version >= 3.12.x are currently not supported
  • JDK 11+ (please ensure the JAVA_HOME environment variable is properly configured)

  • Git 2.20+

Develop PSyKE with PyCharm

To participate in the development of PSyKE, we suggest the PyCharm IDE.

Importing the project

  1. Clone this repository in a folder of your preference using git_clone appropriately
  2. Open PyCharm
  3. Select Open
  4. Navigate your file system and find the folder where you cloned the repository
  5. Click Open

Developing the project

Contributions to this project are welcome. Just some rules:

  • We use git flow, so if you write new features, please do so in a separate feature/ branch
  • We recommend forking the project, developing your code, then contributing back via pull request
  • Commit often
  • Stay in sync with the develop (or master) branch (pull frequently if the build passes)
  • Do not introduce low quality or untested code

Issue tracking

If you meet some problems in using or developing PSyKE, you are encouraged to signal it through the project "Issues" section on GitHub.

Download files

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

Source Distribution

psyke-1.0.4.dev56.tar.gz (74.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

psyke-1.0.4.dev56-py3-none-any.whl (77.4 kB view details)

Uploaded Python 3

File details

Details for the file psyke-1.0.4.dev56.tar.gz.

File metadata

  • Download URL: psyke-1.0.4.dev56.tar.gz
  • Upload date:
  • Size: 74.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for psyke-1.0.4.dev56.tar.gz
Algorithm Hash digest
SHA256 833a79c396b8d2291a5389ca46e0f1694295a5ef1ec8899beeff86cf030caf8d
MD5 7efaa9218dd0bf78850e0692bc3322f7
BLAKE2b-256 bb3edb833b58a9dfeca511c5c1337cda7b96910f6ddce019640ab1f1b7581cd0

See more details on using hashes here.

File details

Details for the file psyke-1.0.4.dev56-py3-none-any.whl.

File metadata

  • Download URL: psyke-1.0.4.dev56-py3-none-any.whl
  • Upload date:
  • Size: 77.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for psyke-1.0.4.dev56-py3-none-any.whl
Algorithm Hash digest
SHA256 0510e3743c9303acdafefa841fd36407d4e48f600602c49564b52c2ed408dd2e
MD5 27d31980e992019b15139b537730dd68
BLAKE2b-256 380b59e5aca1f27070cc47cbd0c9b7e07c1f47da0ed6f03dc58019a80da858ab

See more details on using hashes here.

Release history Release notifications | RSS feed

1.0.4

2 files

This release

1.0.4.dev56 This release

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

0.10.4

2 files

0.10.1

2 files

0.9.1

2 files

0.9.0

2 files

0.8.15

2 files

0.8.14

2 files

0.8.9

2 files

0.8.7

2 files

0.8.5

2 files

0.8.4

2 files

0.8.2

2 files

0.8.1

2 files

0.7.11

2 files

0.7.10

2 files

0.7.9

2 files

0.7.8

2 files

0.7.7

2 files

0.7.6

2 files

0.7.5

2 files

0.7.3

2 files

0.5.2

2 files

0.5.1

2 files

0.4.9

2 files

0.4.7

2 files

0.4.5

2 files

0.3.5

2 files

0.3.1

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page