-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathtest_adapter.py
More file actions
541 lines (485 loc) · 20.8 KB
/
Copy pathtest_adapter.py
File metadata and controls
541 lines (485 loc) · 20.8 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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
import os
from contextlib import redirect_stdout
from copy import deepcopy
from dataclasses import asdict
from io import StringIO
from unittest import mock
from unittest.mock import Mock
import pytest
import torch
import yaml
from lightning import Fabric
from lightning.fabric.plugins.precision.bitsandbytes import _BITSANDBYTES_AVAILABLE, BitsandbytesPrecision
from lightning.fabric.wrappers import _FabricOptimizer
from torch._dynamo.backends import debugging
from transformers.models.gemma import GemmaConfig, GemmaForCausalLM
from transformers.models.gemma2 import Gemma2Config, Gemma2ForCausalLM
from transformers.models.gemma3 import Gemma3ForCausalLM, Gemma3TextConfig
import litgpt.adapter as gpt_adapter
import litgpt.adapter_v2 as gpt_adapter_v2
import litgpt.finetune.adapter as module
import litgpt.model as gpt
from litgpt.adapter import GPT, CausalSelfAttention, Config, adapter_filter
from litgpt.args import EvalArgs, TrainArgs
from litgpt.data import Alpaca
from litgpt.scripts.convert_hf_checkpoint import copy_weights_gemma_2, copy_weights_gemma_3, copy_weights_hf_llama
from litgpt.scripts.convert_lit_checkpoint import qkv_reassemble as make_qkv_interleaved
from litgpt.utils import _RunIf
def test_config_identical():
name = "pythia-14m"
base_config = asdict(gpt.Config.from_name(name))
adapter_config = asdict(gpt_adapter.Config.from_name(name))
del adapter_config["adapter_prompt_length"]
del adapter_config["adapter_start_layer"]
assert adapter_config == base_config
with Fabric(accelerator="cpu").init_module(empty_init=True):
base_model = gpt.GPT.from_name(name)
adapter_model = gpt_adapter.GPT.from_name(name)
assert adapter_model.lm_head.weight.shape == base_model.lm_head.weight.shape
def test_adapter_filter(tmp_path):
fabric = Fabric(devices=1)
model = GPT.from_name("pythia-14m", n_layer=4)
save_path = tmp_path / "model.pth"
fabric.save(save_path, {"model": model}, filter={"model": adapter_filter})
saved = torch.load(save_path)["model"]
expected = {
"transformer.h.2.attn.adapter_wte.weight",
"transformer.h.2.attn.gating_factor",
"transformer.h.3.attn.adapter_wte.weight",
"transformer.h.3.attn.gating_factor",
}
assert set(saved) == expected
@mock.patch.dict(os.environ, {"LT_ACCELERATOR": "cpu"})
def test_adapter_script(tmp_path, fake_checkpoint_dir, monkeypatch, alpaca_path):
model_config = dict(block_size=128, n_layer=2, n_embd=8, n_head=4, padded_vocab_size=8, adapter_start_layer=0)
(fake_checkpoint_dir / "model_config.yaml").write_text(yaml.dump(model_config))
monkeypatch.setattr(module, "load_checkpoint", Mock())
tokenizer_mock = Mock()
tokenizer_mock.return_value = tokenizer_mock
tokenizer_mock.encode = lambda *_, **__: torch.tensor([3, 2, 1])
monkeypatch.setattr(module, "Tokenizer", tokenizer_mock)
out_dir = tmp_path / "out"
stdout = StringIO()
with redirect_stdout(stdout), mock.patch("sys.argv", ["adapter.py", str(fake_checkpoint_dir)]):
module.setup(
fake_checkpoint_dir,
data=Alpaca(
download_dir=alpaca_path.parent, file_name=alpaca_path.name, val_split_fraction=0.5, num_workers=0
),
out_dir=out_dir,
precision="32-true",
train=TrainArgs(global_batch_size=1, save_interval=2, epochs=1, max_steps=6, micro_batch_size=1),
eval=EvalArgs(interval=2, max_iters=2, max_new_tokens=1),
)
out_dir_contents = set(os.listdir(out_dir))
checkpoint_dirs = {"step-000002", "step-000004", "step-000006", "final"}
assert checkpoint_dirs.issubset(out_dir_contents)
assert all((out_dir / p).is_dir() for p in checkpoint_dirs)
for checkpoint_dir in checkpoint_dirs:
assert {p.name for p in (out_dir / checkpoint_dir).iterdir()} == {
"lit_model.pth.adapter",
"model_config.yaml",
"tokenizer_config.json",
"tokenizer.json",
"hyperparameters.yaml",
"prompt_style.yaml",
}
assert (out_dir / "logs" / "csv" / "version_0" / "metrics.csv").is_file()
logs = stdout.getvalue()
assert logs.count("(step)") == 6
assert logs.count("val loss") == 4 # 3 validations + 1 final validation
assert logs.count("Final evaluation") == 1
assert "of trainable parameters: 168" in logs
def test_adapter_gpt_init_weights():
config = Config(n_layer=1, n_head=6, n_embd=12, block_size=1, vocab_size=1, adapter_start_layer=0)
model = GPT(config)
param = model.transformer.h[0].attn.gating_factor
assert (param == 0).all()
torch.nn.init.constant_(param, 1.23)
assert (param != 0).any()
model.apply(model._init_weights)
assert (param == 0).all()
@_RunIf(dynamo=True)
@torch.inference_mode()
def test_adapter_compile():
model = GPT.from_name("pythia-14m", n_layer=3)
x = torch.randint(model.config.vocab_size, size=(2, model.config.block_size), dtype=torch.int64)
explanation = torch._dynamo.explain(model)(x)
assert isinstance(explanation, debugging.ExplainOutput)
assert explanation.graph_count == 1
assert explanation.graph_break_count == 0
model = GPT(model.config)
model.set_kv_cache(2)
input_pos = torch.arange(model.config.block_size)
explanation = torch._dynamo.explain(model)(x, input_pos)
assert isinstance(explanation, debugging.ExplainOutput)
assert explanation.graph_count == 1
assert explanation.graph_break_count == 0
@_RunIf(min_cuda_gpus=1)
def test_adapter_bitsandbytes(monkeypatch, tmp_path, fake_checkpoint_dir, alpaca_path):
if not _BITSANDBYTES_AVAILABLE:
pytest.skip("BNB not available")
from bitsandbytes.optim import PagedAdamW
model_config = dict(
block_size=128, n_layer=2, n_embd=8, n_head=4, padded_vocab_size=8, adapter_start_layer=0, bias=True
)
(fake_checkpoint_dir / "model_config.yaml").write_text(yaml.dump(model_config))
tokenizer_mock = Mock()
tokenizer_mock.return_value = tokenizer_mock
tokenizer_mock.encode = lambda *_, **__: torch.tensor([3, 2, 1])
monkeypatch.setattr(module, "Tokenizer", tokenizer_mock)
monkeypatch.setattr(module, "load_checkpoint", Mock())
train_mock = Mock()
train_mock.return_value = {
"raw_tokens": 1000,
"raw_tokens_plus_prompt_template": 1100,
"raw_tokens_plus_prompt_template_and_padding": 1200,
}
monkeypatch.setattr(module, "fit", train_mock)
stdout = StringIO()
with redirect_stdout(stdout), mock.patch("sys.argv", ["adapter.py", str(fake_checkpoint_dir)]):
module.setup(
fake_checkpoint_dir,
data=Alpaca(
download_dir=alpaca_path.parent, file_name=alpaca_path.name, val_split_fraction=0.5, num_workers=0
),
precision="16-true",
quantize="bnb.nf4-dq",
out_dir=tmp_path,
)
_, kwargs = train_mock.call_args
fabric = kwargs["fabric"]
model = kwargs["model"]
optimizer = kwargs["optimizer"]
assert isinstance(fabric.strategy.precision, BitsandbytesPrecision)
assert isinstance(optimizer, _FabricOptimizer)
assert isinstance(optimizer._optimizer, PagedAdamW)
dtype_to_name = {"torch.uint8": set(), "torch.float16": set()}
for name, layer in model.named_parameters():
name = name[len("_forward_module.") :]
dtype_to_name[str(layer.dtype)].add(name)
assert dtype_to_name == {
"torch.float16": {
"transformer.wte.weight",
"transformer.wte.norm.weight",
"transformer.wte.norm.bias",
"transformer.h.0.norm_1.weight",
"transformer.h.0.norm_1.bias",
"transformer.h.0.attn.gating_factor",
"transformer.h.0.attn.qkv.bias",
"transformer.h.0.attn.proj.bias",
"transformer.h.0.attn.adapter_wte.weight",
"transformer.h.0.norm_2.weight",
"transformer.h.0.norm_2.bias",
"transformer.h.0.mlp.fc.bias",
"transformer.h.0.mlp.proj.bias",
"transformer.h.1.norm_1.weight",
"transformer.h.1.norm_1.bias",
"transformer.h.1.attn.gating_factor",
"transformer.h.1.attn.qkv.bias",
"transformer.h.1.attn.proj.bias",
"transformer.h.1.attn.adapter_wte.weight",
"transformer.h.1.norm_2.weight",
"transformer.h.1.norm_2.bias",
"transformer.h.1.mlp.fc.bias",
"transformer.h.1.mlp.proj.bias",
"transformer.ln_f.weight",
"transformer.ln_f.bias",
},
"torch.uint8": {
"lm_head.weight",
"transformer.h.0.attn.qkv.weight",
"transformer.h.0.attn.proj.weight",
"transformer.h.0.mlp.fc.weight",
"transformer.h.0.mlp.proj.weight",
"transformer.h.1.attn.qkv.weight",
"transformer.h.1.attn.proj.weight",
"transformer.h.1.mlp.fc.weight",
"transformer.h.1.mlp.proj.weight",
},
}
assert {p.name for p in tmp_path.rglob("*.pth.adapter")} == {"lit_model.pth.adapter"}
state_dict = torch.load(tmp_path / "final" / "lit_model.pth.adapter")
assert len(state_dict) == 1
dtype_to_name = {"torch.float16": set()}
for name, layer in state_dict["model"].items():
dtype_to_name[str(layer.dtype)].add(name)
assert dtype_to_name == {
"torch.float16": {
"transformer.h.0.attn.adapter_wte.weight",
"transformer.h.0.attn.gating_factor",
"transformer.h.1.attn.adapter_wte.weight",
"transformer.h.1.attn.gating_factor",
}
}
logs = stdout.getvalue()
assert "of trainable parameters: 168" in logs
assert "of non-trainable parameters: 1,888" in logs
@torch.inference_mode()
@pytest.mark.parametrize("model_name", ["gemma-2b", "gemma-7b"])
def test_against_hf_gemma(model_name):
device = torch.device("cpu")
dtype = torch.float32
T = 5
ours_config = Config.from_name(model_name, n_layer=2, n_head=16, n_embd=32, intermediate_size=86)
theirs_config = GemmaConfig(
vocab_size=ours_config.padded_vocab_size,
hidden_size=ours_config.n_embd,
head_dim=ours_config.head_size,
num_attention_heads=ours_config.n_head,
num_hidden_layers=ours_config.n_layer,
intermediate_size=ours_config.intermediate_size,
max_position_embeddings=T,
rms_norm_eps=ours_config.norm_eps,
num_key_value_heads=ours_config.n_query_groups,
rope_theta=ours_config.rope_base,
attention_bias=ours_config.bias,
tie_word_embeddings=True,
hidden_act="gelu_pytorch_tanh",
)
assert ours_config.intermediate_size == theirs_config.intermediate_size
theirs_model = GemmaForCausalLM(theirs_config).to(device)
theirs_state_dict = theirs_model.state_dict()
# Gemma weights are shipped without `lm_head.weight`
theirs_state_dict.pop("lm_head.weight")
state_dict = {}
copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
ours_model = GPT(ours_config).to(device)
ours_model.load_state_dict(state_dict)
# test end to end
x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
assert x.size(1) == T
ours_y = ours_model(x)
theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
torch.testing.assert_close(ours_y, theirs_y)
@torch.inference_mode()
@pytest.mark.parametrize("model_name", ("gemma-2-9b", "gemma-2-27b"))
@pytest.mark.parametrize(
("device", "dtype"),
[
(torch.device("cpu"), torch.float32),
pytest.param(
torch.device("cuda"),
torch.float16,
marks=[
# the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
# is slightly different
pytest.mark.xfail(raises=AssertionError, strict=False),
_RunIf(min_cuda_gpus=1),
],
),
],
)
def test_against_original_gemma_2(model_name, device, dtype):
torch.set_default_dtype(dtype)
T = 20
ours_config = Config.from_name(
model_name,
block_size=T,
sliding_window_size=T // 2,
n_layer=2,
n_head=16,
n_embd=32,
intermediate_size=86,
)
theirs_config = Gemma2Config(
vocab_size=ours_config.padded_vocab_size,
hidden_size=ours_config.n_embd,
head_dim=ours_config.head_size,
num_attention_heads=ours_config.n_head,
num_hidden_layers=ours_config.n_layer,
intermediate_size=ours_config.intermediate_size,
max_position_embeddings=ours_config.block_size,
sliding_window=ours_config.sliding_window_size,
rms_norm_eps=ours_config.norm_eps,
num_key_value_heads=ours_config.n_query_groups,
rope_theta=ours_config.rope_base,
attention_bias=ours_config.bias,
tie_word_embeddings=True,
hidden_act="gelu_pytorch_tanh",
attn_logit_softcapping=ours_config.attention_logit_softcapping,
final_logit_softcapping=ours_config.final_logit_softcapping,
initializer_range=1.0, # to make the affect of attention_logit_softcapping more prominent
attn_implementation="eager",
query_pre_attn_scalar=ours_config.attention_scores_scalar,
)
assert ours_config.intermediate_size == theirs_config.intermediate_size
theirs_model = Gemma2ForCausalLM(theirs_config).to(device)
theirs_state_dict = theirs_model.state_dict()
# Gemma weights are shipped without `lm_head.weight`
theirs_state_dict.pop("lm_head.weight")
state_dict = {}
copy_weights_gemma_2({}, state_dict, theirs_state_dict)
ours_model = GPT(ours_config).to(device)
ours_model.load_state_dict(state_dict)
# test end to end
x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
assert x.size(1) == T
ours_y = ours_model(x)
theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
torch.testing.assert_close(ours_y, theirs_y, atol=1e-4, rtol=1e-5)
@torch.inference_mode()
@pytest.mark.parametrize("model_name", ("gemma-3-1b-it", "gemma-3-4b-it", "gemma-3-12b-it", "gemma-3-27b-it"))
@pytest.mark.parametrize(
("device", "dtype"),
[
(torch.device("cpu"), torch.float32),
pytest.param(
torch.device("cuda"),
torch.float16,
marks=[
# the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
# is slightly different
pytest.mark.xfail(raises=AssertionError, strict=False),
_RunIf(min_cuda_gpus=1),
],
),
],
)
def test_against_original_gemma_3(model_name, device, dtype):
torch.set_default_dtype(dtype)
T = 20
ours_config = Config.from_name(
model_name,
block_size=T,
sliding_window_size=T // 2,
n_layer=2,
n_head=16,
n_embd=32,
intermediate_size=86,
)
theirs_config = Gemma3TextConfig(
vocab_size=ours_config.padded_vocab_size,
hidden_size=ours_config.n_embd,
head_dim=ours_config.head_size,
num_attention_heads=ours_config.n_head,
num_hidden_layers=ours_config.n_layer,
intermediate_size=ours_config.intermediate_size,
max_position_embeddings=ours_config.block_size,
sliding_window=ours_config.sliding_window_size,
rms_norm_eps=ours_config.norm_eps,
num_key_value_heads=ours_config.n_query_groups,
rope_theta=ours_config.rope_base,
attention_bias=ours_config.bias,
tie_word_embeddings=True,
hidden_act="gelu_pytorch_tanh",
attn_logit_softcapping=ours_config.attention_logit_softcapping,
final_logit_softcapping=ours_config.final_logit_softcapping,
initializer_range=1.0, # to make the affect of attention_logit_softcapping more prominent
attn_implementation="eager",
query_pre_attn_scalar=ours_config.attention_scores_scalar,
)
assert ours_config.intermediate_size == theirs_config.intermediate_size
theirs_model = Gemma3ForCausalLM(theirs_config).to(device)
theirs_state_dict = theirs_model.state_dict()
# Gemma weights are shipped without `lm_head.weight`
theirs_state_dict.pop("lm_head.weight")
state_dict = {}
copy_weights_gemma_3({}, state_dict, theirs_state_dict)
ours_model = GPT(ours_config).to(device)
ours_model.load_state_dict(state_dict)
# test end to end
x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
assert x.size(1) == T
ours_y = ours_model(x)
theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
torch.testing.assert_close(ours_y, theirs_y, atol=1e-4, rtol=1e-5)
def test_load_legacy_state_dict():
"""Check that a legacy state dict (with an interleaved placement in QKV matrix) can be loaded into a model with CausalSelfAttention layers."""
config = Config(
n_embd=32,
n_head=4,
head_size=8,
n_query_groups=4,
bias=True,
)
attention_1 = CausalSelfAttention(config=config, block_idx=0)
# make weights to be as-like in a legacy checkpoint, with `attn.attn.weight` instead of `attn.qkv.weight`
# and make them interleaved
state_dict = deepcopy(attention_1.state_dict())
state_dict["attn.weight"] = make_qkv_interleaved(state_dict.pop("qkv.weight"), config)
state_dict["attn.bias"] = make_qkv_interleaved(state_dict.pop("qkv.bias"), config)
attention_2 = CausalSelfAttention(config=config, block_idx=0)
attention_2.load_state_dict(state_dict)
@pytest.mark.parametrize("adapter_module", [gpt_adapter, gpt_adapter_v2])
@pytest.mark.parametrize("warmup", ["none", "validation", "cached_inference"])
@pytest.mark.parametrize("training", [False, True])
def test_adapter_cache_preserves_gradients(adapter_module, warmup, training):
torch.manual_seed(42)
model = adapter_module.GPT(
adapter_module.Config(
n_layer=2,
n_head=2,
n_embd=16,
block_size=8,
vocab_size=32,
padding_multiple=1,
adapter_start_layer=1,
adapter_prompt_length=2,
)
)
if adapter_module is gpt_adapter:
gpt_adapter.mark_only_adapter_as_trainable(model)
else:
gpt_adapter_v2.mark_only_adapter_v2_as_trainable(model)
tokens = torch.randint(0, 32, (2, 8))
if warmup != "none":
model.eval()
with torch.no_grad():
if warmup == "cached_inference":
model.set_kv_cache(batch_size=2)
model(tokens, input_pos=torch.arange(8))
else:
model(tokens)
# eval() alone must not disable gradients, either.
model.train(training)
optimizer = torch.optim.AdamW((p for p in model.parameters() if p.requires_grad), lr=0.01)
embedding = model.transformer.h[1].attn.adapter_wte.weight
before = embedding.detach().clone()
for _ in range(3):
optimizer.zero_grad()
logits = model(tokens)
loss = torch.nn.functional.cross_entropy(logits[:, :-1].reshape(-1, 32), tokens[:, 1:].reshape(-1))
loss.backward()
assert embedding.grad is not None
assert torch.isfinite(embedding.grad).all()
optimizer.step()
assert not torch.equal(embedding, before)
@pytest.mark.parametrize("adapter_module", [gpt_adapter, gpt_adapter_v2])
@torch.no_grad()
def test_adapter_cache_clear_and_reuse(adapter_module):
torch.manual_seed(42)
model = adapter_module.GPT(
adapter_module.Config(
n_layer=2,
n_head=2,
n_embd=16,
block_size=8,
vocab_size=32,
padding_multiple=1,
adapter_start_layer=1,
adapter_prompt_length=2,
)
).eval()
attention = model.transformer.h[1].attn
attention.gating_factor.fill_(0.5)
tokens = torch.randint(0, 32, (1, 4))
expected = model(tokens)
model.set_kv_cache(batch_size=1)
first = model(tokens[:, :3], input_pos=torch.arange(3))
cache = attention.adapter_kv_cache
assert cache is not None
last = model(tokens[:, 3:], input_pos=torch.tensor([3]))
assert attention.adapter_kv_cache is cache
torch.testing.assert_close(torch.cat([first, last], dim=1), expected)
model.clear_kv_cache()
assert attention.adapter_kv_cache is None
assert model.mask_cache is None
assert all(block.attn.kv_cache is None for block in model.transformer.h)
# A new inference session must see updated adapter weights.
attention.adapter_wte.weight.add_(1)
expected = model(tokens)
model.set_kv_cache(batch_size=1)
actual = model(tokens, input_pos=torch.arange(4))
torch.testing.assert_close(actual, expected)