Spaces:
Running
Running
File size: 12,410 Bytes
e0b11c9 d75dc6d e0b11c9 d75dc6d e0b11c9 d75dc6d e0b11c9 3ecbde7 d75dc6d e0b11c9 d75dc6d 7c66433 d75dc6d 3ecbde7 e0b11c9 3ecbde7 d75dc6d e0b11c9 3ecbde7 acd6966 7c66433 e0b11c9 acd6966 e0b11c9 d75dc6d 9d5c2ca e0b11c9 7c66433 e0b11c9 acd6966 e0b11c9 acd6966 876b065 261016b e0b11c9 acd6966 d75dc6d e0b11c9 d75dc6d e0b11c9 d75dc6d e0b11c9 d75dc6d e0b11c9 acd6966 e0b11c9 d75dc6d e0b11c9 acd6966 d75dc6d e0b11c9 acd6966 8e3f0b6 e0b11c9 7c66433 e0b11c9 d75dc6d 8e3f0b6 d75dc6d 8e3f0b6 7c66433 e0b11c9 3ecbde7 e0b11c9 7c66433 e0b11c9 7c66433 d75dc6d acd6966 e0b11c9 acd6966 7c66433 e0b11c9 7c66433 acd6966 e0b11c9 8e3f0b6 d75dc6d acd6966 8e3f0b6 d75dc6d 8e3f0b6 acd6966 8e3f0b6 d75dc6d 8e3f0b6 d75dc6d 8e3f0b6 acd6966 8e3f0b6 e0b11c9 acd6966 e0b11c9 7c66433 acd6966 d75dc6d 7c66433 d75dc6d acd6966 7c66433 e0b11c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
# https://huggingface.co/spaces/Glaciohound/LM-Steer
import torch
import nltk
import streamlit as st
import random
import numpy as np
import pandas as pd
from lm_steer.models.get_model import get_model
@st.cache_resource(show_spinner="Loading model...")
def st_get_model(model_name, low_resource_mode):
device = torch.device("cuda:0") if torch.cuda.is_available() \
else torch.device("cpu")
model, tokenizer = get_model(
model_name, "final_layer", "multiply",
4,
1000, 1e-3, 1e-2, low_resource_mode
)
model.to_device(device)
ckpt = torch.load(f"checkpoints/{model_name}.pt", map_location=device)
model.load_state_dict(ckpt[1])
return model, tokenizer
@st.cache_data()
def word_embedding_space_analysis(
model_name, dim):
model = st.session_state.model
tokenizer = st.session_state.tokenizer
projector1 = model.steer.projector1.data[dim]
projector2 = model.steer.projector2.data[dim]
embeddings = model.steer.lm_head.weight
matrix = projector1.matmul(projector2.transpose(0, 1))
S, V, D = torch.linalg.svd(matrix)
data = []
top = 50
select_words = 20
n_dim = 10
for _i in range(n_dim):
left_tokens = embeddings.matmul(D[_i]).argsort()[-top:].flip(0)
right_tokens = embeddings.matmul(D[_i]).argsort()[:top]
def filter_words(side_tokens):
output = []
for t in side_tokens:
word = tokenizer.decode([t])
if (
len(word) > 2 and word[0] == " " and
word[1:].isalpha() and word[1:].lower().islower()
):
word = word[1:]
if word.lower() in nltk.corpus.words.words():
output.append(word)
return output
left_tokens = filter_words(left_tokens)
right_tokens = filter_words(right_tokens)
if len(left_tokens) < len(right_tokens):
left_tokens = right_tokens
data.append(", ".join(left_tokens[:select_words]))
return pd.DataFrame(
data,
columns=["Words Contributing to the Style"],
index=[f"Dim#{_i}" for _i in range(n_dim)],
), D
# rgb tuple to hex color
def rgb_to_hex(rgb):
return '#%02x%02x%02x' % rgb
def main():
# set up the page
random.seed(0)
nltk.download('words')
dimension_names = ["Sentiment", "Detoxification"]
dimension_colors = ["#ff7f0e", "#1f77b4"]
title = "LM-Steer: Word Embeddings Are Steers for Language Models"
st.set_page_config(
layout="wide",
page_title=title,
page_icon="🛞",
)
st.title(title)
'''
Live demo for the paper ["**LM-Steer: Word Embeddings Are Steers for
Language Models**"](https://arxiv.org/abs/2305.12798) (**ACL 2024
Outstanding Paper Award**) by Chi Han, Jialiang Xu, Manling Li, Yi Fung,
Chenkai Sun, Nan Jiang, Tarek Abdelzaher, Heng Ji. GitHub repository:
https://github.com/Glaciohound/LM-Steer.
'''
st.subheader("Overview")
col1, col2, col3 = st.columns([1, 5, 1])
col2.image(
'https://raw.githubusercontent.com/Glaciohound/LM-Steer'
'/refs/heads/main/assets/overview_fig.jpg',
caption="LM-Steer Method Overview"
)
'''
Language models (LMs) automatically learn word embeddings during
pre-training on language corpora. Although word embeddings are usually
interpreted as feature vectors for individual words, their roles in
language model generation remain underexplored. In this work, we
theoretically and empirically revisit output word embeddings and find that
their linear transformations are equivalent to steering language model
generation styles. We name such steers LM-Steers and find them existing in
LMs of all sizes. It requires learning parameters equal to 0.2% of the
original LMs' size for steering each style.
'''
# set up the model
st.divider()
st.divider()
st.subheader("Select A Model and Steer It")
'''
Due to resource limits, we are only able to provide a few models for
steering. You can also refer to the Github repository:
https://github.com/Glaciohound/LM-Steer to host larger models locally.
Some generated texts may contain toxic or offensive content. Please be
cautious when using the generated texts.
Note that for these smaller models, the generation quality may not be as
good as the larger models (GPT-4, Llama, etc.).
'''
col1, col2, col3, col4 = st.columns([3, 1, 1, 1])
model_name = col1.selectbox(
"Select a model to steer",
[
"gpt2",
"gpt2-medium",
"gpt2-large",
"EleutherAI/pythia-70m",
"EleutherAI/pythia-160m",
"EleutherAI/pythia-410m",
# "EleutherAI/pythia-1b",
# "EleutherAI/pythia-1.4b",
# "EleutherAI/pythia-2.8b",
# "EleutherAI/pythia-6.9b",
# "EleutherAI/gpt-j-6B",
],
)
# low_resource_mode = True if st.session_state.model_name in (
# "EleutherAI/pythia-1.4b", "EleutherAI/pythia-2.8b",
# "EleutherAI/pythia-6.9b", "EleutherAI/gpt-j-6B",
# ) else False
low_resource_mode = False
model, tokenizer = st_get_model(
model_name, low_resource_mode)
st.session_state.model = model
st.session_state.tokenizer = tokenizer
num_param = model.steer.projector1.data.shape[1] ** 2 / 1024 ** 2
total_param = sum(p.numel() for _, p in model.named_parameters()) / \
1024 ** 2
ratio = num_param / total_param
col2.metric("Parameters Steered", f"{num_param:.1f}M")
col3.metric("LM Total Size", f"{total_param:.1f}M")
col4.metric("Steered Ratio", f"{ratio:.2%}")
# steering
steer_range = 3.
steer_interval = 0.2
st.session_state.prompt = st.text_input(
"Enter a prompt",
st.session_state.get("prompt", "My life")
)
col1, col2, col3 = st.columns([2, 2, 1], gap="medium")
sentiment = col1.slider(
"Sentiment (Negative ↔︎ Positive)",
-steer_range, steer_range, 0.0, steer_interval)
detoxification = col2.slider(
"Detoxification Strength (Toxic ↔︎ Clean)",
-steer_range, steer_range, 0.0,
steer_interval)
max_length = col3.number_input("Max length", 20, 300, 20, 40)
col1, col2, col3, _ = st.columns(4)
randomness = col2.checkbox("Random sampling", value=False)
if "output" not in st.session_state:
st.session_state.output = ""
if col1.button("Steer and generate!", type="primary"):
if sentiment == 0 and detoxification == 0:
'''
**The steer values are both 0, which means the steered model
is the same as the original model.**
'''
with st.spinner("Generating..."):
steer_values = [detoxification, 0, sentiment, 0]
st.session_state.output = model.generate(
st.session_state.prompt,
steer_values,
seed=None if randomness else 0,
min_length=0,
max_length=max_length,
do_sample=True,
top_p=0.9,
)
with st.chat_message("human"):
st.write(st.session_state.output)
# Analysing the sentence
st.divider()
st.divider()
st.subheader("LM-Steer Converts Any LM Into A Text Analyzer")
'''
LM-Steer also serves as a probe for analyzing the text. It can be used to
analyze the sentiment and detoxification of the text. Now, we proceed and
use LM-Steer to analyze the text in the box above. You can also modify the
text or use your own. You may observe that these two dimensions can be
entangled, as a negative sentiment may also detoxify the text.
'''
st.session_state.analyzed_text = \
st.text_area("Text to analyze:", st.session_state.output, height=200)
if st.session_state.get("analyzed_text", "") != "" and \
st.button("Analyze the text above", type="primary"):
col1, col2 = st.columns(2)
for name, col, dim, color, axis_annotation in zip(
dimension_names,
[col1, col2],
[2, 0],
dimension_colors,
["Negative ↔︎ Positive", "Toxic ↔︎ Clean"]
):
with st.spinner(f"Analyzing {name}..."):
col.subheader(name)
# classification
col.markdown(
"##### Sentence Classification Distribution")
col.write(axis_annotation)
_, dist_list, _ = model.steer_analysis(
st.session_state.analyzed_text,
dim, -steer_range, steer_range,
bins=4*int(steer_range)+1,
)
dist_list = np.array(dist_list)
col.bar_chart(
pd.DataFrame(
{
"Value": dist_list[:, 0],
"Probability": dist_list[:, 1],
}
), x="Value", y="Probability",
color=color,
)
# key tokens
pos_steer, neg_steer = np.zeros((2, 4))
pos_steer[dim] = 1
neg_steer[dim] = -1
_, token_evidence = model.evidence_words(
st.session_state.analyzed_text,
[pos_steer, neg_steer],
)
tokens = tokenizer(st.session_state.analyzed_text).input_ids
tokens = [f"{i:3d}: {tokenizer.decode([t])}"
for i, t in enumerate(tokens)]
col.markdown("##### Token's Evidence Score in the Dimension")
col.write(axis_annotation)
col.bar_chart(
pd.DataFrame(
{
"Token": tokens[1:],
"Evidence": token_evidence,
}
), x="Token", y="Evidence",
horizontal=True, color=color,
)
st.divider()
st.divider()
st.subheader("LM-Steer Unveils Word Embeddings Space")
'''
LM-Steer provides a lens on how word embeddings correlate with LM word
embeddings: what word dimensions contribute to or contrast to a specific
style. This analysis can be used to understand the word embedding space
and how it steers the model's generation.
'''
for dimension, color in zip(dimension_names, dimension_colors):
f'##### {dimension} Word Dimensions'
dim = 2 if dimension == "Sentiment" else 0
analysis_result, D = word_embedding_space_analysis(
model_name, dim)
with st.expander("Show the analysis results"):
color_scale = 7
color_init = 230
st.table(analysis_result.style.apply(
lambda x: [
"background: " + rgb_to_hex(
(255,
color_init-(9-i)*color_scale,
color_init-(9-i)*color_scale)
if dimension == "Sentiment" else
(color_init-(9-i)*color_scale,
color_init-(9-i)*color_scale,
255)
)
for i in range(len(x))
]
))
embeddings = model.steer.lm_head.weight
dim1 = embeddings.matmul(D[0]).tolist()
dim2 = embeddings.matmul(D[1]).tolist()
words = [tokenizer.decode([i]) for i in range(len(embeddings))]
scatter_chart = [
(_d1, _d2, _word)
for _d1, _d2, _word in zip(dim1, dim2, words)
if len(_word) > 2 and _word[0] == " " and
_word[1:].isalpha() and _word[1:].lower().islower()
]
scatter_chart = pd.DataFrame(
scatter_chart,
columns=["Dim1", "Dim2", "Word"]
)
st.scatter_chart(
scatter_chart, x="Dim1", y="Dim2",
color="Word",
# color=color,
height=1000, size=50,)
if __name__ == "__main__":
main()
|