forked from MakazhanAlpamys/Soup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembedding.py
More file actions
575 lines (485 loc) · 21.3 KB
/
Copy pathembedding.py
File metadata and controls
575 lines (485 loc) · 21.3 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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
"""Embedding model trainer — contrastive/triplet loss for sentence embeddings."""
import math
import time
from pathlib import Path
from typing import Optional
from rich.console import Console
from soup_cli.config.schema import SoupConfig, TrainingConfig
from soup_cli.utils.gpu import (
bf16_fp16_flags,
estimate_batch_size,
model_size_from_name,
resolve_base_load_dtype,
resolve_device_map,
)
from soup_cli.utils.mixed_precision import align_trainable_dtype_for_fp16
from soup_cli.utils.seeding import apply_training_seed, training_seed_kwargs
console = Console()
class EmbeddingTrainerWrapper:
"""High-level wrapper for embedding model fine-tuning from SoupConfig.
Supports contrastive, triplet, and cosine loss for training sentence
embedding models (BGE, E5, GTE, INSTRUCTOR, etc.).
Data fields:
- anchor: the query / anchor text
- positive: semantically similar text
- negative: semantically dissimilar text (optional for contrastive, required for triplet)
"""
def __init__(
self,
config: SoupConfig,
device: str = "cuda",
report_to: str = "none",
deepspeed_config: Optional[str] = None,
fsdp_config: Optional[dict] = None,
trust_remote_code: bool = False,
):
self.config = config
self.device = device
self.report_to = report_to
self.deepspeed_config = deepspeed_config
self.fsdp_config = fsdp_config
self.trust_remote_code = trust_remote_code
from soup_cli.utils.trust_remote import (
model_requires_trust_remote_code,
resolve_trust_remote_code,
)
requires = model_requires_trust_remote_code(config.base) or False
self._trust_remote_code = resolve_trust_remote_code(
config.base,
requested=trust_remote_code,
console=console,
requires_remote_code=requires,
)
self.model = None
self.tokenizer = None
self.trainer = None
self._output_dir = None
def setup(self, dataset: dict) -> None:
"""Load model, tokenizer, apply LoRA, create embedding trainer."""
from datasets import Dataset
from transformers import TrainingArguments
from soup_cli.trainer.sft import _enable_hf_transfer_progress
_enable_hf_transfer_progress()
cfg = self.config
tcfg = cfg.training
# #353: seed before the model and any adapter are built.
apply_training_seed(tcfg)
use_unsloth = cfg.backend == "unsloth"
if use_unsloth:
self._setup_unsloth(cfg, tcfg)
else:
self._setup_transformers(cfg, tcfg)
if tcfg.lora.r == 0:
trainable = sum(p.numel() for p in self.model.parameters() if p.requires_grad)
total = sum(p.numel() for p in self.model.parameters())
else:
trainable, total = self.model.get_nb_trainable_parameters()
pct = 100 * trainable / total if total > 0 else 0.0
label = "Full fine-tuning" if tcfg.lora.r == 0 else "LoRA applied"
console.print(
f"[green]{label}:[/] {trainable:,} trainable"
f" / {total:,} total ({pct:.2f}%)"
)
# --- Batch size ---
batch_size = tcfg.batch_size
if batch_size == "auto":
from soup_cli.utils.gpu import get_gpu_info
gpu_info = get_gpu_info()
model_size = model_size_from_name(cfg.base)
batch_size = estimate_batch_size(
model_params_b=model_size,
seq_length=cfg.data.max_length,
gpu_memory_bytes=gpu_info["memory_total_bytes"],
quantization=tcfg.quantization,
lora_r=tcfg.lora.r,
)
# Embedding processes pairs/triplets → roughly 2-3x memory per sample
batch_size = max(1, batch_size // 3)
console.print(f"[green]Auto batch size (embedding):[/] {batch_size}")
# --- Dataset ---
train_ds = Dataset.from_list(dataset["train"])
eval_ds = None
if "val" in dataset and dataset["val"]:
eval_ds = Dataset.from_list(dataset["val"])
# --- Output dir ---
output_dir = Path(cfg.output)
if cfg.experiment_name:
output_dir = output_dir / cfg.experiment_name
output_dir.mkdir(parents=True, exist_ok=True)
# --- Calculate warmup steps from ratio ---
total_steps = (
math.ceil(len(train_ds) / batch_size / tcfg.gradient_accumulation_steps)
* tcfg.epochs
)
warmup_steps = int(total_steps * tcfg.warmup_ratio)
# --- Determine loss function ---
loss_type = tcfg.embedding_loss
margin = tcfg.embedding_margin
has_negatives = "negative" in train_ds.column_names
if loss_type == "triplet" and not has_negatives:
console.print(
"[yellow]Warning: triplet loss requires 'negative' field. "
"Falling back to contrastive loss.[/]"
)
loss_type = "contrastive"
console.print(
f"[green]Embedding config:[/] loss={loss_type}, margin={margin}, "
f"pooling={tcfg.embedding_pooling}"
)
# --- Training args ---
_bf16, _fp16 = bf16_fp16_flags(self.device)
training_kwargs = {
"output_dir": str(output_dir),
"num_train_epochs": tcfg.epochs,
"per_device_train_batch_size": batch_size,
"gradient_accumulation_steps": tcfg.gradient_accumulation_steps,
"learning_rate": tcfg.lr,
"warmup_steps": warmup_steps,
"weight_decay": tcfg.weight_decay,
"max_grad_norm": tcfg.max_grad_norm,
"optim": tcfg.optimizer,
"lr_scheduler_type": tcfg.scheduler,
"logging_steps": tcfg.logging_steps,
"save_steps": tcfg.save_steps,
"save_total_limit": 3,
"bf16": _bf16,
"fp16": _fp16,
"report_to": self.report_to,
"remove_unused_columns": False,
"deepspeed": self.deepspeed_config,
**training_seed_kwargs(tcfg),
}
if self.fsdp_config:
training_kwargs.update(self.fsdp_config)
# LoRA+ is not a TrainingArguments field; its optimizer is built and
# attached after the trainer exists (attach_loraplus_optimizer). Do NOT
# forward loraplus_lr_ratio here (#724).
training_args = TrainingArguments(**training_kwargs)
# --- Custom Trainer with embedding loss ---
self.trainer = _EmbeddingTrainer(
model=self.model,
args=training_args,
train_dataset=train_ds,
eval_dataset=eval_ds,
processing_class=self.tokenizer,
loss_type=loss_type,
margin=margin,
pooling=tcfg.embedding_pooling,
temperature=tcfg.embedding_temperature,
max_length=cfg.data.max_length,
)
# #359 - the same exposure #336 fixed in sft.py: with LoRA the
# no-decay optimizer group is empty, DeepSpeed drops it, and the LR
# scheduler keeps two base_lrs until torch's strict zip raises at the
# first step. The guard prunes inside create_optimizer, i.e. before
# the scheduler is built. No-op for full fine-tuning, and only under
# DeepSpeed so the ordinary path keeps its own optimizer.
if self.deepspeed_config:
from soup_cli.utils.deepspeed import attach_empty_param_group_guard
attach_empty_param_group_guard(self.trainer)
# v0.40.6 #67 — ReLoRA callback.
from soup_cli.utils.peft_wiring import (
attach_curriculum_callback,
attach_loraplus_optimizer,
attach_plugin_callback,
attach_relora_callback,
)
# LoRA+ optimizer (#724) — build and attach now that the trainer exists.
attach_loraplus_optimizer(self.trainer, tcfg)
attach_relora_callback(self.trainer, tcfg)
# v0.53.5 #114/#115 — dynamic curriculum live callback.
attach_curriculum_callback(self.trainer, tcfg, str(output_dir), console)
# v0.53.6 #101 — Soup plugin TrainerCallback.
attach_plugin_callback(self.trainer, console)
self._output_dir = str(output_dir)
def _setup_transformers(self, cfg: SoupConfig, tcfg: TrainingConfig) -> None:
"""Load model via standard transformers + peft pipeline."""
from peft import LoraConfig, TaskType, get_peft_model, prepare_model_for_kbit_training
from transformers import AutoModel, AutoTokenizer
console.print(f"[dim]Loading tokenizer: {cfg.base}[/]")
self.tokenizer = AutoTokenizer.from_pretrained(
cfg.base, trust_remote_code=self._trust_remote_code
)
if self.tokenizer.pad_token is None:
self.tokenizer.pad_token = self.tokenizer.eos_token
# Quantization (v0.38.0 Quant Menu — see soup_cli.utils.quant_menu)
from soup_cli.utils.quant_menu import build_quantization_config_for_loader
quant_config_obj = build_quantization_config_for_loader(
tcfg=tcfg, base=cfg.base, console=console,
)
console.print(f"[dim]Loading model: {cfg.base}[/]")
dev_map = resolve_device_map(self.device)
from soup_cli.trainer.sft import is_full_finetune
model_kwargs = {
"trust_remote_code": self._trust_remote_code, "device_map": dev_map,
"torch_dtype": resolve_base_load_dtype(
self.device, full_finetune=is_full_finetune(tcfg)
),
}
if quant_config_obj is not None:
model_kwargs["quantization_config"] = quant_config_obj
# Use AutoModel (not AutoModelForCausalLM) for embedding models
self.model = AutoModel.from_pretrained(cfg.base, **model_kwargs)
if tcfg.quantization in ("4bit", "8bit", "mxfp4"):
self.model = prepare_model_for_kbit_training(self.model)
if tcfg.lora.r == 0:
# #700 — Full fine-tuning for embedding models (no PEFT adapter applied).
trainable = [
param for param in self.model.parameters() if param.requires_grad
]
if not trainable:
raise ValueError(
"training.lora.r=0 requests full fine-tuning but no "
"parameter is trainable — check base model parameters, "
"or set lora.r >= 1 to train an adapter instead. "
"Refusing rather than running a no-op."
)
if hasattr(self.model, "enable_input_require_grads"):
self.model.enable_input_require_grads()
else:
from soup_cli.utils.peft_wiring import resolve_lora_target_modules
target_modules = resolve_lora_target_modules(self.model, tcfg.lora.target_modules)
lora_config = LoraConfig(
r=tcfg.lora.r,
lora_alpha=tcfg.lora.alpha,
lora_dropout=tcfg.lora.dropout,
target_modules=target_modules,
task_type=TaskType.FEATURE_EXTRACTION,
bias="none",
use_dora=tcfg.lora.use_dora,
use_rslora=tcfg.lora.use_rslora,
)
# v0.40.6 #67 — surgical PEFT patches.
from soup_cli.utils.peft_wiring import (
apply_post_lora_patches,
apply_pre_lora_patches,
)
apply_pre_lora_patches(self.model, cfg.base)
self.model = get_peft_model(self.model, lora_config)
apply_post_lora_patches(self.model)
# v0.35.0 #60 — multi-trainer wiring of v0.28.0 speed/memory features.
# Embedding does not run cross-doc-mask paths; that flag no-ops.
from soup_cli.utils.v028_features import apply_v028_speed_memory
apply_v028_speed_memory(
model=self.model, tcfg=tcfg, base_model=cfg.base,
console=console, device=self.device, backend=cfg.backend,
)
def _setup_unsloth(self, cfg: SoupConfig, tcfg: TrainingConfig) -> None:
"""Load model via unsloth FastLanguageModel (2-5x faster)."""
from soup_cli.utils.unsloth import load_model_and_tokenizer
console.print(f"[dim]Loading model via [bold]unsloth[/]: {cfg.base}[/]")
self.model, self.tokenizer = load_model_and_tokenizer(
model_name=cfg.base,
max_seq_length=cfg.data.max_length,
quantization=tcfg.quantization,
lora_r=tcfg.lora.r,
lora_alpha=tcfg.lora.alpha,
lora_dropout=tcfg.lora.dropout,
target_modules=tcfg.lora.target_modules,
)
if self.tokenizer.pad_token is None:
self.tokenizer.pad_token = self.tokenizer.eos_token
def train(
self,
display: Optional[object] = None,
tracker: Optional[object] = None,
run_id: str = "",
resume_from_checkpoint: Optional[str] = None,
) -> dict:
"""Run embedding training and return results summary."""
if self.trainer is None or self._output_dir is None:
raise RuntimeError(
"EmbeddingTrainerWrapper.train() called before setup(). "
"Call setup(dataset) first."
)
start = time.time()
if display:
from soup_cli.monitoring.callback import SoupTrainerCallback
self.trainer.add_callback(
SoupTrainerCallback(
display, tracker=tracker, run_id=run_id,
loss_watchdog=self.config.training.loss_watchdog,
loss_watchdog_threshold=self.config.training.loss_watchdog_threshold,
loss_watchdog_patience=self.config.training.loss_watchdog_patience,
eval_gate_config=self.config.training.eval_gate,
)
)
from soup_cli.utils.v028_features import activation_offloading_context
with activation_offloading_context(
self.config.training, self._output_dir,
):
align_trainable_dtype_for_fp16(
self.trainer.model,
fp16=getattr(self.trainer.args, "fp16", False),
bf16=getattr(self.trainer.args, "bf16", False),
)
self.trainer.train(resume_from_checkpoint=resume_from_checkpoint)
duration = time.time() - start
self.trainer.save_model(self._output_dir)
self.tokenizer.save_pretrained(self._output_dir)
logs = self.trainer.state.log_history
train_losses = [entry["loss"] for entry in logs if "loss" in entry]
hours = int(duration // 3600)
minutes = int((duration % 3600) // 60)
duration_str = f"{hours}h {minutes}m" if hours > 0 else f"{minutes}m"
return {
"initial_loss": train_losses[0] if train_losses else 0,
"final_loss": train_losses[-1] if train_losses else 0,
"duration": duration_str,
"duration_secs": duration,
"output_dir": self._output_dir,
"total_steps": self.trainer.state.global_step,
}
def _pool_embeddings(last_hidden_state, attention_mask, pooling: str):
"""Apply pooling strategy to hidden states."""
import torch
if pooling == "cls":
return last_hidden_state[:, 0, :]
elif pooling == "last":
# Get last non-padding token for each sequence
seq_lengths = attention_mask.sum(dim=1) - 1
batch_idx = torch.arange(last_hidden_state.size(0), device=last_hidden_state.device)
return last_hidden_state[batch_idx, seq_lengths, :]
else:
# Mean pooling (default)
mask_expanded = attention_mask.unsqueeze(-1).float()
sum_embeddings = (last_hidden_state * mask_expanded).sum(dim=1)
sum_mask = mask_expanded.sum(dim=1).clamp(min=1e-9)
return sum_embeddings / sum_mask
class _EmbeddingTrainer:
"""Custom trainer for embedding models with contrastive/triplet loss.
Wraps HuggingFace Trainer with custom compute_loss for embedding objectives.
"""
def __init__(
self,
model,
args,
train_dataset,
eval_dataset,
processing_class,
loss_type: str,
margin: float,
pooling: str,
temperature: float,
max_length: int,
):
from transformers import Trainer
self._loss_type = loss_type
self._margin = margin
self._pooling = pooling
self._temperature = temperature
self._max_length = max_length
self._tokenizer = processing_class
# Create a custom Trainer subclass dynamically to inject compute_loss
embedding_trainer = self
class _CustomTrainer(Trainer):
def compute_loss(self, model, inputs, return_outputs=False, **kwargs):
return embedding_trainer._compute_embedding_loss(
model, inputs, return_outputs
)
self._trainer = _CustomTrainer(
model=model,
args=args,
train_dataset=train_dataset,
eval_dataset=eval_dataset,
data_collator=self._collate_fn,
processing_class=processing_class,
)
def _collate_fn(self, features):
"""Collate embedding pairs/triplets into tokenized batches."""
anchors = [feat["anchor"] for feat in features]
positives = [feat["positive"] for feat in features]
negatives = None
if "negative" in features[0] and features[0]["negative"]:
negatives = [feat["negative"] for feat in features]
batch = {}
anchor_enc = self._tokenizer(
anchors, padding=True, truncation=True,
max_length=self._max_length, return_tensors="pt",
)
batch["anchor_input_ids"] = anchor_enc["input_ids"]
batch["anchor_attention_mask"] = anchor_enc["attention_mask"]
pos_enc = self._tokenizer(
positives, padding=True, truncation=True,
max_length=self._max_length, return_tensors="pt",
)
batch["positive_input_ids"] = pos_enc["input_ids"]
batch["positive_attention_mask"] = pos_enc["attention_mask"]
if negatives:
neg_enc = self._tokenizer(
negatives, padding=True, truncation=True,
max_length=self._max_length, return_tensors="pt",
)
batch["negative_input_ids"] = neg_enc["input_ids"]
batch["negative_attention_mask"] = neg_enc["attention_mask"]
return batch
def _compute_embedding_loss(self, model, inputs, return_outputs=False):
"""Compute contrastive, triplet, or cosine loss on embeddings."""
import torch
from torch.nn import functional as nn_func
# Encode anchor
anchor_out = model(
input_ids=inputs["anchor_input_ids"],
attention_mask=inputs["anchor_attention_mask"],
)
anchor_emb = _pool_embeddings(
anchor_out.last_hidden_state,
inputs["anchor_attention_mask"],
self._pooling,
)
# Encode positive
pos_out = model(
input_ids=inputs["positive_input_ids"],
attention_mask=inputs["positive_attention_mask"],
)
pos_emb = _pool_embeddings(
pos_out.last_hidden_state,
inputs["positive_attention_mask"],
self._pooling,
)
# Normalize embeddings
anchor_emb = nn_func.normalize(anchor_emb, p=2, dim=-1)
pos_emb = nn_func.normalize(pos_emb, p=2, dim=-1)
if self._loss_type == "triplet" and "negative_input_ids" in inputs:
neg_out = model(
input_ids=inputs["negative_input_ids"],
attention_mask=inputs["negative_attention_mask"],
)
neg_emb = _pool_embeddings(
neg_out.last_hidden_state,
inputs["negative_attention_mask"],
self._pooling,
)
neg_emb = nn_func.normalize(neg_emb, p=2, dim=-1)
# Triplet margin loss
pos_dist = (anchor_emb - pos_emb).pow(2).sum(dim=-1)
neg_dist = (anchor_emb - neg_emb).pow(2).sum(dim=-1)
loss = nn_func.relu(pos_dist - neg_dist + self._margin).mean()
elif self._loss_type == "cosine":
# Cosine similarity loss — maximize similarity of anchor-positive
cos_sim = (anchor_emb * pos_emb).sum(dim=-1)
loss = (1.0 - cos_sim).mean()
else:
# Contrastive loss (InfoNCE / in-batch negatives)
similarity = torch.matmul(anchor_emb, pos_emb.T) / self._temperature
labels = torch.arange(similarity.size(0), device=similarity.device)
loss = nn_func.cross_entropy(similarity, labels)
if return_outputs:
return loss, anchor_out
return loss
# Delegate Trainer interface methods
def train(self, resume_from_checkpoint=None):
return self._trainer.train(resume_from_checkpoint=resume_from_checkpoint)
def save_model(self, output_dir):
return self._trainer.save_model(output_dir)
def add_callback(self, callback):
return self._trainer.add_callback(callback)
@property
def state(self):
return self._trainer.state
@property
def model(self):
return self._trainer.model
@property
def args(self):
return self._trainer.args