Python wrapper for the Premise algorithm, a data mining method to identify significant differences between two groups of texts.
Project description
PyPremise
Premise is a data mining method to identify significant differences between two groups of texts. It can be used, e.g., to identify from the outputs of an LLM what systematic differences occur if you change your prompt. Or it can identify patterns or explanations of where an NLP classifier performs well and where it fails.
PyPremise is a Python library to makes it easy to run Premise with just a couple of lines of code.
Example Applications
Systematic differences between two prompts or two LLMs
Premise identified, e.g., that changing the last name of the protagonist from Dr. Li to Dr. Smith in a story generation prompt caused - among other differences - a drastic change in the gender distribution (more details and examples here)
| Patterns Group 0 (Dr. Li) | Patterns Group 1 (Dr. Smith) |
|---|---|
| (She, she) | (He, he) |
| (car, accident) | (general, practioner) |
| (small, town) |
Evaluating where a classifier fails
Premise identified, e.g., for a Visual Question Answering model that it struggled with counting, color identification and visual orientation (more details and examples here):
| pattern | example from the dataset |
|---|---|
| (how, many) | how many elephants are there |
| (what, ⓧ(color, colors, colour) ) | what color is the bench |
| (on, top, of) | what is on the top of the cake |
| (left, to) | what can be seen to the left |
| (on, wall, hanging) | what is hanging on the wall |
Example Usage
You can run PyPremise with just a few lines of code.
from pypremise import Premise, data_loaders
premise_instances, _, voc_index_to_token = data_loaders.get_dummy_data()
premise = Premise(voc_index_to_token=voc_index_to_token)
patterns = premise.find_patterns(premise_instances)
for p in patterns:
print(p)
# prints two patterns
# (How) and (many) towards group 0
# (When) and (was) and (taken) towards group
PyPremise provides you with helper methods to load data from different sources like numpy arrays or tokenized text files. See below for more examples.
Installation
Install a recent version of Python, then just run
pip install pypremise
Currently, PyPremise directly supports Linux (AMD64/X86-64), Mac (Apple Silicon, the "M" processors) and Windows. See the section "Native Code" below for other platforms.
Tutorials
We provide several Jupyter Notebooks as tutorials. Ideally, you start with the "General introductory example" and then you can pick tutorials for more specific use cases.
- General introductory example:
general_example.ipynb - How to evaluate LLM outputs (Spotlight usecase):
LLM_outputs_examples.ipynb - How to explain misclassifications of NLP models (original Premise usecase):
missclassification_examples.ipynb - How to use word embeddings for more complex results:
word_embedding_examples.ipynb
If you need additional help, do not hesitate to reach out to us!
Additional data loaders
The file data_loaders.py contains helper functions for loading data from various sources such as token lists, NumPy-like arrays, or CSV files. If you want to load your own data, refer to this file for examples and supported formats.
Native Code
The core code of the Premise algorithm is implemented in C++ for efficiency and runtime reasons. You can find it in the original Premise repository. You can use the native version of Premise (without the PyPremise Python wrapper) following the instructions there.
If you have your own compiled version of Premise (e.g. for a currently not supported platform), you can use it in PyPremise via the premise_engine argument of the pypremise.core.Premise constructor. Just use
Premise(premise_engine="local_path:/path/to/your/premise/binary.exe")
Authors, Issues, License & Citation
PyPremise is developed by the Human-Centric NLP & AI group at LMU Munich. If you run into any issues using PyPremise, do not hesitate to contact us via mail or create an issue on Github.
If you use this tool in your work, we would be happy if you tell us about it.
If you use PyPremise to evaluate the output of LLMs, please cite
@inproceedings{hedderich-etal-2025-whats,
title = "What{'}s the Difference? Supporting Users in Identifying the Effects of Prompt and Model Changes Through Token Patterns",
author = "Hedderich, Michael A. and
Wang, Anyi and
Zhao, Raoyuan and
Eichin, Florian and
Fischer, Jonas and
Plank, Barbara",
booktitle = "Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
year = "2025",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2025.acl-long.985/"
}
For any other uses (like e.g. explaining misclassifications) and for the general Premise algorithm, please cite:
@inproceedings{premise,
author = {Michael A. Hedderich and
Jonas Fischer and
Dietrich Klakow and
Jilles Vreeken},
title = {Label-Descriptive Patterns and Their Application to Characterizing
Classification Errors},
booktitle = {International Conference on Machine Learning, {ICML}},
series = {Proceedings of Machine Learning Research},
year = {2022},
url = {https://proceedings.mlr.press/v162/hedderich22a.html}
}
PyPremise (not Premise itself) is published under MIT license.
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 Distribution
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 pypremise-0.2.1.tar.gz.
File metadata
- Download URL: pypremise-0.2.1.tar.gz
- Upload date:
- Size: 4.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6b53a831865ad75515ab94c717b5072ef0af2fa9b7d5aa30579c59a4ffdf229
|
|
| MD5 |
5202795392b156c8c387e8d75b226b4a
|
|
| BLAKE2b-256 |
6e1c0b8d93684a73add64306287393391f880a584dcea6ddd10568933a4c5978
|
File details
Details for the file pypremise-0.2.1-py3-none-any.whl.
File metadata
- Download URL: pypremise-0.2.1-py3-none-any.whl
- Upload date:
- Size: 4.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6567578b9e6068c5deba59b1b26834debc61f4dbba07eae5a38b2c987bc7490f
|
|
| MD5 |
9068766c6115b4a0ee463612b82b53d7
|
|
| BLAKE2b-256 |
64e541327c9b6a05a5a0022d5d97b588bfaf173b2314e36359ef0b422cd4550b
|