-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsteerer.py
More file actions
426 lines (355 loc) · 13.9 KB
/
steerer.py
File metadata and controls
426 lines (355 loc) · 13.9 KB
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
import math
import torch
import torch.nn as nn
import torch.nn.functional as F
from transformers import AutoModelForCausalLM
class LowRankAdapter(nn.Module):
def __init__(
self,
hidden_size: int,
rank: int,
alpha: float = 1.0,
activation: str = "silu",
dtype=None,
):
super().__init__()
self.hidden_size = hidden_size
self.rank = rank
self.alpha = alpha
# Choose activation
if activation is None:
self.act = None
elif activation.lower() == "relu":
self.act = nn.ReLU()
elif activation.lower() == "gelu":
self.act = nn.GELU()
elif activation.lower() == "tanh":
self.act = nn.Tanh()
else:
# default: SiLU (like many modern adapters / LoRA variants)
self.act = nn.SiLU()
# Linear layers: (H -> r) then (r -> H)
# Use dtype from base model if provided
self.down = nn.Linear(hidden_size, rank, bias=False, dtype=dtype)
self.up = nn.Linear(rank, hidden_size, bias=False, dtype=dtype)
self.reset_parameters()
def reset_parameters(self):
# LoRA-style init:
# - down: small random
# - up: zeros so the adapter starts as a no-op
nn.init.kaiming_uniform_(self.down.weight, a=math.sqrt(5))
self.down.weight.data *= 1e-3 # make it small
nn.init.zeros_(self.up.weight)
def forward(self, h: torch.Tensor) -> torch.Tensor:
"""
h: (..., H)
returns Δh of same shape as h
"""
orig_shape = h.shape
H = orig_shape[-1]
assert H == self.hidden_size, f"Expected last dim {self.hidden_size}, got {H}"
x = h.view(-1, H) # (N, H)
x = self.down(x) # (N, r)
if self.act is not None:
x = self.act(x)
x = self.up(x) # (N, H)
if self.alpha != 1.0:
x = self.alpha * x
return x.view(orig_shape)
class AdapterSteerer(nn.Module):
"""
Wraps a causal LM and injects learned low-rank adapters at:
- block output
- attention output
- MLP output
For each (layer, target) we have a LowRankAdapter:
Δh = α * W_up( act(W_down(h)) )
`apply_to` controls where within the sequence the adapter is applied:
- "last": only to the last token (position -1)
- "all": to all tokens in the sequence
"""
def __init__(
self,
base_model,
layers_to_steer="all",
targets=("block",),
rank: int = 4,
apply_to: str = "last", # "last" or "all"
alpha: float = 1.0,
activation: str = "silu",
):
super().__init__()
assert hasattr(base_model, "model"), "Assuming LLaMA-style with .model.layers"
assert apply_to in ("last", "all")
self.base_model = base_model
self.config = base_model.config
self.apply_to = apply_to
self.rank = rank
self.alpha = alpha
self.activation = activation
if layers_to_steer == "all":
try:
self.layers_to_steer = list(range(self.config.num_hidden_layers))
except:
self.layers_to_steer = list(range(self.config.text_config.num_hidden_layers))
else:
self.layers_to_steer = list(layers_to_steer)
# normalize targets to a set
self.targets = targets # e.g. {"block", "attn", "mlp"}
try:
hidden_size = self.config.hidden_size
except:
hidden_size = self.config.text_config.hidden_size
param_dtype = next(base_model.parameters()).dtype
# One adapter per (layer, target)
self.adapters = nn.ModuleDict()
for layer_idx in self.layers_to_steer:
if "block" in self.targets:
self.adapters[f"layer{layer_idx}_block"] = LowRankAdapter(
hidden_size=hidden_size,
rank=rank,
alpha=alpha,
activation=activation,
dtype=param_dtype,
)
if "attn" in self.targets:
self.adapters[f"layer{layer_idx}_attn"] = LowRankAdapter(
hidden_size=hidden_size,
rank=rank,
alpha=alpha,
activation=activation,
dtype=param_dtype,
)
if "mlp" in self.targets:
self.adapters[f"layer{layer_idx}_mlp"] = LowRankAdapter(
hidden_size=hidden_size,
rank=rank,
alpha=alpha,
activation=activation,
dtype=param_dtype,
)
# Register hooks
self._hooks = []
for layer_idx in self.layers_to_steer:
try:
layer = self.base_model.model.layers[layer_idx]
except:
layer = self.base_model.model.language_model.layers[layer_idx]
# 1) Hook on whole block output
if "block" in self.targets:
h = layer.register_forward_hook(
self._make_block_hook(layer_idx)
)
self._hooks.append(h)
# 2) Hook on attention output
if "attn" in self.targets:
attn = layer.post_attention_layernorm # LLaMA-style
h = attn.register_forward_hook(
self._make_submodule_hook(layer_idx, "attn")
)
self._hooks.append(h)
# 3) Hook on MLP output
if "mlp" in self.targets:
mlp = layer.mlp
h = mlp.register_forward_hook(
self._make_submodule_hook(layer_idx, "mlp")
)
self._hooks.append(h)
# hack: make grpo trainer happy
self.warnings_issued = {}
self.is_gradient_checkpointing = None
# hack: dummy functions for GRPO
def add_model_tags(*args, **kwargs):
pass
def gradient_checkpointing_enable(*args, **kwargs):
pass
# ---------- helpers: how to apply adapters over sequence ----------
def _apply_adapter_last(self, tensor, adapter: nn.Module):
"""
tensor: (B, S, H)
apply adapter only to last token (position -1) in a functional way
"""
if tensor.ndim != 3:
return tensor
B, S, H = tensor.shape
h_last = tensor[:, -1, :] # (B, H)
delta_last = adapter(h_last) # (B, H)
new_last = h_last + delta_last # (B, H)
# build a new tensor, no in-place assignment
new_last = new_last.unsqueeze(1) # (B, 1, H)
prefix = tensor[:, :-1, :] # (B, S-1, H)
return torch.cat([prefix, new_last], dim=1)
def _apply_adapter_all(self, tensor, adapter: nn.Module):
"""
tensor: (B, S, H)
apply adapter to all tokens individually
"""
if tensor.ndim != 3:
return tensor
B, S, H = tensor.shape
h = tensor.view(B * S, H) # (B*S, H)
delta = adapter(h).view(B, S, H) # (B, S, H)
return tensor + delta # functional, no in-place
def _apply_adapter(self, tensor, adapter: nn.Module):
if self.apply_to == "last":
return self._apply_adapter_last(tensor, adapter)
else: # "all"
return self._apply_adapter_all(tensor, adapter)
# ---------- Hook creators ----------
def _make_block_hook(self, layer_idx):
key = f"layer{layer_idx}_block"
def hook(module, inputs, output):
adapter = self.adapters[key]
if isinstance(output, torch.Tensor):
return self._apply_adapter(output, adapter)
if isinstance(output, tuple):
first = self._apply_adapter(output[0], adapter)
return (first,) + output[1:]
return output
return hook
def _make_submodule_hook(self, layer_idx, which):
key = f"layer{layer_idx}_{which}"
def hook(module, inputs, output):
adapter = self.adapters[key]
if isinstance(output, torch.Tensor):
return self._apply_adapter(output, adapter)
if isinstance(output, tuple):
first = self._apply_adapter(output[0], adapter)
return (first,) + output[1:]
return output
return hook
# ---------- Forward / generate ----------
def forward(self, *args, **kwargs):
# Trainer / your code will call this; hooks do the steering
return self.base_model(*args, **kwargs)
def generate(self, *args, **kwargs):
# Generation also flows through the same hooks
return self.base_model.generate(*args, **kwargs)
class FixedVectorSteerer(nn.Module):
"""
Wraps a causal LM and injects trainable additive vectors at:
- block output
- attention output
- MLP output
based on `targets`.
`apply_to` controls where the delta is added within the sequence:
- "last": only to the last token (position -1)
- "all": to all tokens in the sequence
"""
def __init__(
self,
base_model,
layers_to_steer="all",
targets=("block",),
apply_to: str = "last", # "last" or "all"
):
super().__init__()
assert hasattr(base_model, "model"), "Assuming LLaMA-style with .model.layers"
assert apply_to in ("last", "all")
self.base_model = base_model
self.config = base_model.config
self.apply_to = apply_to
if layers_to_steer == "all":
self.layers_to_steer = list(range(self.config.num_hidden_layers))
else:
self.layers_to_steer = list(layers_to_steer)
# normalize targets to a set for membership checks
self.targets = targets # e.g. {"block", "attn", "mlp"}
hidden_size = self.config.hidden_size
param_dtype = next(base_model.parameters()).dtype
# One delta per (layer, target)
self.deltas = nn.ParameterDict()
for layer_idx in self.layers_to_steer:
if "block" in self.targets:
self.deltas[f"layer{layer_idx}_block"] = nn.Parameter(
torch.zeros(hidden_size, dtype=param_dtype)
# or: torch.randn(hidden_size, dtype=param_dtype) * 1e-3
)
if "attn" in self.targets:
self.deltas[f"layer{layer_idx}_attn"] = nn.Parameter(
torch.zeros(hidden_size, dtype=param_dtype)
)
if "mlp" in self.targets:
self.deltas[f"layer{layer_idx}_mlp"] = nn.Parameter(
torch.zeros(hidden_size, dtype=param_dtype)
)
# Register hooks
self._hooks = []
for layer_idx in self.layers_to_steer:
layer = self.base_model.model.layers[layer_idx]
# 1) Hook on whole block output
if "block" in self.targets:
h = layer.register_forward_hook(
self._make_block_hook(layer_idx)
)
self._hooks.append(h)
# 2) Hook on attention output
if "attn" in self.targets:
attn = layer.post_attention_layernorm # LLaMA-style
h = attn.register_forward_hook(
self._make_submodule_hook(layer_idx, "attn")
)
self._hooks.append(h)
# 3) Hook on MLP output
if "mlp" in self.targets:
mlp = layer.mlp
h = mlp.register_forward_hook(
self._make_submodule_hook(layer_idx, "mlp")
)
self._hooks.append(h)
# ---------- helpers: how to apply delta over sequence ----------
def _add_delta_to_last_token(self, tensor, delta_vec):
"""
tensor: (B, S, H)
delta_vec: (H,)
returns new tensor with last token shifted
"""
if tensor.ndim != 3:
return tensor
out = tensor.clone()
out[:, -1, :] = out[:, -1, :] + delta_vec
return out
def _add_delta_to_all_tokens(self, tensor, delta_vec):
"""
tensor: (B, S, H)
delta_vec: (H,)
returns new tensor with ALL tokens shifted
"""
if tensor.ndim != 3:
return tensor
return tensor + delta_vec.view(1, 1, -1)
def _apply_delta(self, tensor, delta_vec):
if self.apply_to == "last":
return self._add_delta_to_last_token(tensor, delta_vec)
else: # "all"
return self._add_delta_to_all_tokens(tensor, delta_vec)
# ---------- Hook creators ----------
def _make_block_hook(self, layer_idx):
key = f"layer{layer_idx}_block"
def hook(module, inputs, output):
delta_vec = self.deltas[key] # (H,)
if isinstance(output, torch.Tensor):
return self._apply_delta(output, delta_vec)
if isinstance(output, tuple):
first = self._apply_delta(output[0], delta_vec)
return (first,) + output[1:]
return output
return hook
def _make_submodule_hook(self, layer_idx, which):
key = f"layer{layer_idx}_{which}"
def hook(module, inputs, output):
delta_vec = self.deltas[key] # (H,)
if isinstance(output, torch.Tensor):
return self._apply_delta(output, delta_vec)
if isinstance(output, tuple):
first = self._apply_delta(output[0], delta_vec)
return (first,) + output[1:]
return output
return hook
# ---------- Forward / generate ----------
def forward(self, *args, **kwargs):
# Trainer will call this; hooks do the steering
return self.base_model(*args, **kwargs)
def generate(self, *args, **kwargs):
# Generation also flows through the same hooks
return self.base_model.generate(*args, **kwargs)