Skip to content

Commit 363d0e7

Browse files
RyanMullinsLIT team
authored andcommitted
LIT 1.3 release notes.
PiperOrigin-RevId: 688566572
1 parent a898390 commit 363d0e7

File tree

5 files changed

+49
-9
lines changed

5 files changed

+49
-9
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ RUN apt update && apt -y install yarn
5656
# This step is slow as it installs many packages.
5757
COPY requirements.txt \
5858
requirements_examples_common.txt \
59-
requirements_examples_descai.txt \
59+
requirements_examples_discriminative_ai.txt \
6060
./
61-
RUN python -m pip install -r requirements_examples_descai.txt
61+
RUN python -m pip install -r requirements_examples_discriminative_ai.txt
6262

6363
# Copy the rest of the lit_nlp package
6464
COPY . ./

RELEASE.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
# Learning Interpretability Tool Release Notes
22

3+
## Release 1.3
4+
5+
This release updates how the Learning Interpretability Tool (LIT) can be
6+
deployed on Google Cloud. You can now use LIT to interpret foundation
7+
models—including
8+
[Gemini](https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/inference),
9+
[Gemma](https://ai.google.dev/gemma), [Llama](https://www.llama.com/), and
10+
[Mistral](https://mistral.ai/technology/#models)—using LIT's prompt
11+
debugging workflows. LIT now provides public container images to make it easier
12+
to deploy on your hosting platform of choice, with an updated
13+
[tutorial](https://codelabs.developers.google.com/codelabs/responsible-ai/lit-on-gcp)
14+
for deploying LIT with [Cloud Run](https://cloud.google.com/run).
15+
16+
### New Stuff
17+
* LIT on GCP -
18+
[1075325](https://github.com/PAIR-code/lit/commit/1075325c6a08d8fdef3bcf66f193b8d5aef673fb),
19+
[1acc868](https://github.com/PAIR-code/lit/commit/1acc868d4a5fa0fd2a135f132f56bb4cb8ba3990),
20+
[55bfc99](https://github.com/PAIR-code/lit/commit/55bfc993cc27fd25ae5089d58ae822bfeca296a3),
21+
[180f68a](https://github.com/PAIR-code/lit/commit/180f68ad3774f8b276e262c0dcb7307ad87e42a3),
22+
[64114d5](https://github.com/PAIR-code/lit/commit/64114d553ffd2c0ffd7bc674fb32a36e564ea0f4),
23+
[2488aa7](https://github.com/PAIR-code/lit/commit/2488aa7cf8f8a112607ca0c8b40870efde73ec24),
24+
[9baac29](https://github.com/PAIR-code/lit/commit/9baac29b96970ef7fa64f2f36ce2c79ff73707b7),
25+
[60bdc7c](https://github.com/PAIR-code/lit/commit/60bdc7cf382bd0c5ead2576c119277230a6080c9),
26+
[7681476](https://github.com/PAIR-code/lit/commit/7681476d5056d927905f24333b890501a36df040),
27+
[4c81182](https://github.com/PAIR-code/lit/commit/4c81182a7db1fda7f8ba071a9542876f462a13fa),
28+
[4e5e8e2](https://github.com/PAIR-code/lit/commit/4e5e8e25c2abb658dc141f0d9c6059dd41e14535),
29+
[b9a0b82](https://github.com/PAIR-code/lit/commit/b9a0b8210263da9ee6d741e4e0f0444849e3a141),
30+
[424adce](https://github.com/PAIR-code/lit/commit/424adce9cf8c9cbabdf5d89d485cdc5f3fd098ed),
31+
[1d019c7](https://github.com/PAIR-code/lit/commit/1d019c7a1bf5f135ea42104889167b79c3f795cd),
32+
[f4436a2](https://github.com/PAIR-code/lit/commit/f4436a26ed79f481e16e2c53c0551703e7ba8c4f),
33+
34+
### Non-breaking Changes, Bug Fixes, and Enhancements
35+
* Upgrade LIT to MobX v6. - [c1f5055](https://github.com/PAIR-code/lit/commit/c1f5055eb7ee8b3671484c863a0967c05fa58338)
36+
* Fix indexing issue in Sequence Salience module. - [58b1d2](https://github.com/PAIR-code/lit/commit/58b1d2b6d0d27c6dca086520cef45bf75466a101)
37+
* Load multiple model wrappers with shared model. - [ba4d975](https://github.com/PAIR-code/lit/commit/ba4d975a90612b0c41a02b3dcb4dbb548261fdd7)
38+
* Add the custom model and dataset loaders to prompt debugging notebook. - [338c6b](https://github.com/PAIR-code/lit/commit/338c6b12de98b61287a25650ad2c6ad7f7bb80cd)
39+
* Convert hosted demos images to multi-stage builds. - [4bf1f8](https://github.com/PAIR-code/lit/commit/4bf1f81666fe546357f00c86a2315d2852346ebe)
40+
* Adding testing instructions to README. - [f24b841](https://github.com/PAIR-code/lit/commit/f24b841959f0402498a056a5164a86ecae6dbb94)
41+
* More LIT documentation updates. - [2e9d267](https://github.com/PAIR-code/lit/commit/2e9d26738d9344cde0eebd66d49dfc14cd800e74)
42+
343
## Release 1.2
444

545
This release covers clean-ups on various obsolete demos, as well as improved
@@ -270,7 +310,7 @@ A full list of contributors to this repo can be found at https://github.com/PAIR
270310
[a95ed67](https://github.com/PAIR-code/lit/commit/a95ed67100f24163624edb4bb659ccfa871dc9bf)
271311
* Add output embeddings and attention options to GlueConfig -
272312
[6e0df41](https://github.com/PAIR-code/lit/commit/6e0df41636405b4ee5556cbf797fcce5887c6070)
273-
* Allow downloading/copying data from the slice editor -
313+
* Allow downloading/copying data from the slice editor -
274314
[57fac3a](https://github.com/PAIR-code/lit/commit/57fac3aeb98fa49c508b20837eded3f4ec80e8f9)
275315
* Use new custom tooltip elemement in various places -
276316
[d409900](https://github.com/PAIR-code/lit/commit/d409900984336d4f8ac73735b1fff57c92623ca4),

lit_nlp/examples/gcp/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ RUN apt update && apt -y install yarn
119119
# This step is slow as it installs many packages.
120120
COPY requirements.txt \
121121
requirements_examples_common.txt \
122-
requirements_examples_genai.txt \
122+
requirements_examples_generative_ai.txt \
123123
./
124-
RUN python -m pip install -r requirements_examples_genai.txt
124+
RUN python -m pip install -r requirements_examples_generative_ai.txt
125125

126126
# Copy the rest of the lit_nlp package
127127
COPY . ./
@@ -157,9 +157,9 @@ RUN apt update && apt -y install yarn
157157

158158
COPY requirements.txt \
159159
requirements_examples_common.txt \
160-
requirements_examples_genai.txt \
160+
requirements_examples_generative_ai.txt \
161161
./
162-
RUN python -m pip install -r requirements_examples_genai.txt
162+
RUN python -m pip install -r requirements_examples_generative_ai.txt
163163

164164
# Copy the rest of the lit_nlp package
165165
COPY . ./

lit_nlp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lit-client",
3-
"version": "1.2",
3+
"version": "1.3",
44
"description": "Client app for LIT, the Learning Interpretability Tool",
55
"engines": {
66
"node": ">=18.0.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "lit-nlp"
77
# LINT.IfChange
8-
version = "1.2"
8+
version = "1.3"
99
# LINT.ThenChange(./lit_nlp/package.json)
1010
authors = [
1111
{ name="Google, LLC", email="[email protected]" }

0 commit comments

Comments
 (0)