🔥LIT: The Learning Interpretability Tool
Project description
🔥 Learning Interpretability Tool (LIT)
The Learning Interpretability Tool (🔥LIT, formerly known as the Language Interpretability Tool) is a visual, interactive ML model-understanding tool that supports text, image, and tabular data. It can be run as a standalone server, or inside of notebook environments such as Colab, Jupyter, and Google Cloud Vertex AI notebooks.
LIT is built to answer questions such as:
- What kind of examples does my model perform poorly on?
- Why did my model make this prediction? Can this prediction be attributed to adversarial behavior, or to undesirable priors in the training set?
- Does my model behave consistently if I change things like textual style, verb tense, or pronoun gender?
LIT supports a variety of debugging workflows through a browser-based UI. Features include:
- Local explanations via salience maps and rich visualization of model predictions.
- Aggregate analysis including custom metrics, slicing and binning, and visualization of embedding spaces.
- Counterfactual generation via manual edits or generator plug-ins to dynamically create and evaluate new examples.
- Side-by-side mode to compare two or more models, or one model on a pair of examples.
- Highly extensible to new model types, including classification, regression, span labeling, seq2seq, and language modeling. Supports multi-head models and multiple input features out of the box.
- Framework-agnostic and compatible with TensorFlow, PyTorch, and more.
LIT has a website with live demos, tutorials, a setup guide and more.
Stay up to date on LIT by joining the lit-announcements mailing list.
For a broader overview, check out our paper and the user guide.
Documentation
Download and Installation
LIT can be run via container image, installed via pip
or built from source.
Building from source is necessary if you update any of the front-end or core
back-end code.
Build container image
Build the image using docker
or podman
:
git clone https://github.com/PAIR-code/lit.git && cd lit
docker build --file Dockerfile --tag lit-nlp .
See the advanced guide for detailed instructions on using the default LIT Docker image, running LIT as a containerized web app in different scenarios, and how to creating your own LIT images.
pip installation
pip install lit-nlp
The pip
installation will install all necessary prerequisite packages for use
of the core LIT package.
It does not install the prerequisites for the provided demos, so you need to install those yourself. See requirements_examples.txt for the list of packages required to run the demos.
Install from source
Clone the repo:
git clone https://github.com/PAIR-code/lit.git && cd lit
Note: be sure you are running Python 3.9+. If you have a different version on
your system, use the conda
instructions below to set up a Python 3.9
environment.
Set up a Python environment with venv
:
python -m venv .venv
source .venv/bin/activate
Or set up a Python environment using conda
:
conda create --name lit-nlp
conda activate lit-nlp
conda install python=3.9
conda install pip
Once you have the environment, install LIT's dependencies:
python -m pip install -r requirements.txt
python -m pip install cudnn cupti # optional, for GPU support
python -m pip install torch # optional, for PyTorch
# Build the frontend
(cd lit_nlp; yarn && yarn build)
Note: Use the -r requirements.txt
option to install every dependency required
for the LIT library, its test suite, and the built-in examples. You can also
install subsets of these using the -r requirements_core.txt
(core library),
-r requirements_test.txt
(test suite), -r requirements_examples.txt
(examples), and/or any combination thereof.
Note: if you see an error
running yarn
on Ubuntu/Debian, be sure you have the
correct version installed.
Running LIT
Explore a collection of hosted demos on the demos page.
Quick-start: classification and regression
To explore classification and regression models tasks from the popular GLUE benchmark:
python -m lit_nlp.examples.glue.demo --port=5432 --quickstart
Navigate to http://localhost:5432 to access the LIT UI.
Your default view will be a small BERT-based model fine-tuned on the Stanford Sentiment Treebank, but you can switch to STS-B or MultiNLI using the toolbar or the gear icon in the upper right.
And navigate to http://localhost:5432 for the UI.
### Notebook usage
Colab notebooks showing the use of LIT inside of notebooks can be found at
[lit_nlp/examples/notebooks](./lit_nlp/examples/notebooks).
We provide a simple
[Colab demo](https://colab.research.google.com/github/PAIR-code/lit/blob/main/lit_nlp/examples/notebooks/LIT_sentiment_classifier.ipynb).
Run all the cells to see LIT on an example classification model in the notebook.
### More Examples
See [lit_nlp/examples](./lit_nlp/examples). Most are run similarly to the
quickstart example above:
```sh
python -m lit_nlp.examples.<example_name>.demo --port=5432 [optional --args]
User Guide
To learn about LIT's features, check out the user guide, or watch this video.
Adding your own models or data
You can easily run LIT with your own model by creating a custom demo.py
launcher, similar to those in lit_nlp/examples. The
basic steps are:
- Write a data loader which follows the
Dataset
API - Write a model wrapper which follows the
Model
API - Pass models, datasets, and any additional components to the LIT server class
For a full walkthrough, see adding models and data.
Extending LIT with new components
LIT is easy to extend with new interpretability components, generators, and more, both on the frontend or the backend. See our documentation to get started.
Pull Request Process
To make code changes to LIT, please work off of the dev
branch and
create pull requests
(PRs) against that branch. The main
branch is for stable releases, and it is
expected that the dev
branch will always be ahead of main
.
Draft PRs are encouraged, especially for first-time contributors or contributors working on complex tasks (e.g., Google Summer of Code contributors). Please use these to communicate ideas and implementations with the LIT team, in addition to issues.
Prior to sending your PR or marking a Draft PR as "Ready for Review", please run the Python and TypeScript linters on your code to ensure compliance with Google's Python and TypeScript Style Guides.
# Run Pylint on your code using the following command from the root of this repo
pushd lit_nlp & pylint & popd
# Run ESLint on your code using the following command from the root of this repo
pushd lit_nlp & yarn lint & popd
Citing LIT
If you use LIT as part of your work, please cite our EMNLP paper:
@misc{tenney2020language,
title={The Language Interpretability Tool: Extensible, Interactive Visualizations and Analysis for {NLP} Models},
author={Ian Tenney and James Wexler and Jasmijn Bastings and Tolga Bolukbasi and Andy Coenen and Sebastian Gehrmann and Ellen Jiang and Mahima Pushkarna and Carey Radebaugh and Emily Reif and Ann Yuan},
booktitle = "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations",
year = "2020",
publisher = "Association for Computational Linguistics",
pages = "107--118",
url = "https://www.aclweb.org/anthology/2020.emnlp-demos.15",
}
Disclaimer
This is not an official Google product.
LIT is a research project and under active development by a small team. There will be some bugs and rough edges, but we're releasing at an early stage because we think it's pretty useful already. We want LIT to be an open platform, not a walled garden, and we would love your suggestions and feedback - drop us a line in the issues.
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
File details
Details for the file lit_nlp-1.3rc1.tar.gz
.
File metadata
- Download URL: lit_nlp-1.3rc1.tar.gz
- Upload date:
- Size: 11.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 987ab0e3a672934151504b12a7c546bcc3f3c727ef7a2a36a3e7858df28b80a2 |
|
MD5 | 7210e03e5c105ad8a37db675270f2655 |
|
BLAKE2b-256 | 16f0af6af3af44ed14ec06cf71eab31ded1cadcc68e0d3e78d3aed4f1af32ed7 |
File details
Details for the file lit_nlp-1.3rc1-py3-none-any.whl
.
File metadata
- Download URL: lit_nlp-1.3rc1-py3-none-any.whl
- Upload date:
- Size: 11.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1c09f532d6b0d3e306759cf49776ace89cf901008537cd3d48acbc8a48c80c7 |
|
MD5 | cc76b82574d5b74794bab0ae74db42c3 |
|
BLAKE2b-256 | 8d8a9611c18fdb38bf262bc3f6608147843b7f815ad28886e4115554757511f8 |