File size: 17,917 Bytes
656b04b | 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 | # Copyright (C) 2025 Arcee AI
# SPDX-License-Identifier: BUSL-1.1
import json
import logging
import os
import re
import sys
from typing import Any, Dict, List, Optional, Tuple
import click
import torch
import torch.nn as nn
import tqdm
from pydantic import BaseModel
from transformers import AutoModelForCausalLM
from mergekit.architecture import ArchitectureInfoUtils, WeightInfo
from mergekit.card import generate_card_lora
from mergekit.common import ModelReference
from mergekit.graph import Executor, Task
from mergekit.io.tasks import FinalizeModel, LoadTensor, SaveTensor, TensorWriterTask
from mergekit.io.tensor_writer import TensorWriter
from mergekit.multigpu_executor import MultiGPUExecutor
from mergekit.options import MergeOptions, PrettyPrintHelp, add_merge_options
logger = logging.getLogger("extract_lora")
@click.command("mergekit-extract-lora", cls=PrettyPrintHelp)
@click.option(
"--model",
required=True,
help="Fine-tuned model path",
)
@click.option(
"--base-model",
required=True,
help="Base model path",
)
@click.option(
"--out-path",
required=True,
help="Output path for extracted LoRA adapter",
)
@click.option(
"--max-rank",
type=int,
default=128,
help="Maximum rank for LoRA decomposition",
)
@click.option(
"--distribute-scale/--no-distribute-scale",
is_flag=True,
default=True,
help="Distribute scale between A and B matrices",
)
@click.option(
"--embed-lora/--no-embed-lora",
is_flag=True,
default=False,
help="Extract LoRA weights for embeddings (vs. in modules_to_save)",
)
@click.option(
"--save-module",
"modules_to_save",
type=str,
multiple=True,
default=[],
help="Save the specified module(s) at full rank",
)
@click.option(
"--exclude-regex",
"-e",
"exclude_regexes",
type=str,
multiple=True,
help="Exclude modules matching the specified regex",
)
@click.option(
"--include-regex",
"-i",
"include_regexes",
type=str,
multiple=True,
help="Include modules matching the specified regex",
)
@click.option(
"--sv-epsilon",
type=float,
default=0,
help="Threshold for singular values to discard",
show_default=True,
)
@click.option(
"--skip-undecomposable",
is_flag=True,
help="Skip saving undecomposable modules",
default=False,
)
@add_merge_options
def main(
base_model: str,
model: str,
out_path: str,
max_rank: int,
distribute_scale: bool,
embed_lora: bool,
modules_to_save: List[str],
exclude_regexes: List[str],
include_regexes: List[str],
sv_epsilon: float,
skip_undecomposable: bool,
merge_options: MergeOptions,
):
merge_options.apply_global_options()
if not modules_to_save:
modules_to_save = []
base_model_ref = ModelReference.model_validate(base_model)
model_ref = ModelReference.model_validate(model)
plan_result = plan_extraction(
base_model_ref=base_model_ref.merged(
cache_dir=merge_options.lora_merge_cache,
trust_remote_code=merge_options.trust_remote_code,
lora_merge_dtype=merge_options.lora_merge_dtype,
),
model_ref=model_ref.merged(
cache_dir=merge_options.lora_merge_cache,
trust_remote_code=merge_options.trust_remote_code,
lora_merge_dtype=merge_options.lora_merge_dtype,
),
modules_to_save=modules_to_save,
out_path=out_path,
options=merge_options,
max_rank=max_rank,
distribute_scale=distribute_scale,
embed_lora=embed_lora,
exclude_regexes=exclude_regexes,
include_regexes=include_regexes,
sv_epsilon=sv_epsilon,
skip_undecomposable=skip_undecomposable,
)
tasks = plan_result.tasks
if merge_options.multi_gpu:
executor = MultiGPUExecutor(
tasks, storage_device="cpu" if not merge_options.low_cpu_memory else None
)
else:
executor = Executor(
tasks,
math_device="cuda" if merge_options.cuda else "cpu",
storage_device="cuda" if merge_options.low_cpu_memory else "cpu",
)
module_real_ranks = {}
for task, result in executor.run():
if isinstance(task, TaskVectorDecompositionTask):
module_real_ranks[task.weight_info.name.removesuffix(".weight")] = result[
0
].shape[0]
real_max_rank = max(module_real_ranks.values())
config_dict = make_config_dict(
base_ref=base_model_ref,
max_rank=real_max_rank,
modules_to_save=modules_to_save,
target_modules=list(
set(key.split(".")[-1] for key in module_real_ranks.keys())
),
module_ranks=module_real_ranks,
)
with open(os.path.join(out_path, "adapter_config.json"), "w") as f:
json.dump(config_dict, f, indent=4)
invocation = " ".join(sys.argv)
with open(os.path.join(out_path, "README.md"), "w", encoding="utf-8") as f:
f.write(
generate_card_lora(
base_model_ref,
model_ref,
invocation,
os.path.basename(out_path),
base_vocab_size=plan_result.base_vocab_size,
final_vocab_size=plan_result.final_vocab_size,
)
)
logger.info(f"LoRA adapter extracted to {out_path}")
def make_config_dict(
base_ref: ModelReference,
max_rank: int,
modules_to_save: List[str],
target_modules: List[str],
module_ranks: Dict[str, int],
):
different_ranked = {k: v for k, v in module_ranks.items() if v != max_rank}
return {
"base_model_name_or_path": base_ref.model.path,
"peft_type": "LORA",
"use_rslora": False,
"target_modules": target_modules,
"modules_to_save": modules_to_save,
"task_type": "CAUSAL_LM",
"r": max_rank,
"lora_alpha": max_rank,
"rank_pattern": different_ranked,
"alpha_pattern": different_ranked,
"lora_dropout": 0.0,
"fan_in_fan_out": False,
"inference_mode": True,
}
class TaskVectorDecompositionTask(Task[Tuple[torch.Tensor, torch.Tensor]]):
weight_info: WeightInfo
input_task: Task
max_rank: int
distribute_scale: bool = True
transpose: bool = False
sv_epsilon: float = 0
def arguments(self) -> Dict[str, Any]:
return {"task_vector": self.input_task}
def execute(self, task_vector: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]:
if self.transpose:
task_vector = task_vector.T
out_dtype = task_vector.dtype
u, s, vh = torch.linalg.svd(
task_vector.to(dtype=torch.float32), full_matrices=False
)
rank = min(self.max_rank, s.shape[0])
if self.sv_epsilon > 0:
rank = min((s > self.sv_epsilon).sum().item(), rank)
if self.distribute_scale:
sqrt_s = torch.diag(torch.sqrt(s[:rank]))
scale_a = sqrt_s
scale_b = sqrt_s
else:
scale_a = torch.diag(s[:rank])
scale_b = torch.eye(rank)
sqrt_s = torch.diag(torch.sqrt(s[:rank]))
weight_a = scale_a @ vh[:rank]
weight_b = u[:, :rank] @ scale_b
return weight_a.to(dtype=out_dtype), weight_b.to(dtype=out_dtype)
def group_label(self) -> Optional[str]:
return self.input_task.group_label()
def uses_accelerator(self):
return True
class TaskVectorTask(Task[torch.Tensor]):
base_tensor: Task
model_tensor: Task
def arguments(self) -> Dict[str, Any]:
return {"base": self.base_tensor, "model": self.model_tensor}
def execute(self, base: torch.Tensor, model: torch.Tensor) -> torch.Tensor:
return model - base
def group_label(self):
return max(
self.base_tensor.group_label() or "", self.model_tensor.group_label() or ""
)
def uses_accelerator(self):
return True
class LoRAModuleSaveTask(Task):
weight_info: WeightInfo
writer_task: TensorWriterTask
model_ref: ModelReference
decomposition_task: TaskVectorDecompositionTask
def arguments(self) -> Dict[str, Any]:
return {"writer": self.writer_task, "decomp": self.decomposition_task}
def execute(
self, writer: TensorWriter, decomp: Tuple[torch.Tensor, torch.Tensor]
) -> None:
weight_a, weight_b = decomp
if weight_a is None or weight_b is None:
if not self.weight_info.optional:
raise RuntimeError(
f"No SVD decomposition for required weight {self.weight_info.name}"
)
return
lora_type = "lora_embedding" if self.decomposition_task.transpose else "lora"
lora_suffix = ".weight" if not self.decomposition_task.transpose else ""
base_name = self.weight_info.name.removesuffix(".weight")
writer.save_tensor(
f"base_model.model.{base_name}.{lora_type}_A{lora_suffix}", weight_a
)
writer.save_tensor(
f"base_model.model.{base_name}.{lora_type}_B{lora_suffix}", weight_b
)
def priority(self) -> int:
return 1000
def group_label(self) -> Optional[str]:
return self.decomposition_task.group_label()
def _wi_load(model_ref: ModelReference, weight_info: WeightInfo) -> LoadTensor:
return LoadTensor(
model=model_ref,
tensor=weight_info.name,
dtype=weight_info.force_dtype,
optional=weight_info.optional,
aliases=weight_info.aliases,
tied_names=weight_info.tied_names,
)
class PlanResults(BaseModel):
tasks: List[Task]
base_vocab_size: int
final_vocab_size: int
def plan_extraction(
base_model_ref: ModelReference,
model_ref: ModelReference,
modules_to_save: List[str],
out_path: str,
options: MergeOptions,
max_rank: int,
distribute_scale: bool = True,
embed_lora: bool = False,
exclude_regexes: Optional[List[str]] = None,
include_regexes: Optional[List[str]] = None,
sv_epsilon: float = 0,
skip_undecomposable: bool = False,
) -> PlanResults:
targets = []
writer_task = TensorWriterTask(
out_path=out_path,
override_basename="adapter_model",
max_shard_size=-1,
safe_serialization=options.safe_serialization,
)
name_to_wi = all_weights_map(model_ref, options)
dummy_model = AutoModelForCausalLM.from_pretrained(
model_ref.model.path,
revision=model_ref.model.revision,
trust_remote_code=options.trust_remote_code,
device_map="meta",
state_dict={},
)
dummy_base = AutoModelForCausalLM.from_pretrained(
base_model_ref.model.path,
revision=base_model_ref.model.revision,
trust_remote_code=options.trust_remote_code,
device_map="meta",
state_dict={},
)
embed_in = dummy_model.get_input_embeddings()
embed_out = dummy_model.get_output_embeddings()
ft_vocab = embed_in.weight.shape[0]
base_vocab = dummy_base.get_input_embeddings().weight.shape[0]
if ft_vocab != base_vocab and embed_lora:
logger.warning(
f"Vocabulary size mismatch: fine-tuned model has {ft_vocab} tokens, base model has {base_vocab} tokens"
)
logger.warning("Enforcing embeddings in modules_to_save, embed_lora=False")
embed_lora = False
warned_modules = set()
def _should_extract(name: str) -> bool:
if include_regexes and not any(re.search(r, name) for r in include_regexes):
return False
if any(re.search(r, name) for r in exclude_regexes):
return False
return True
for name, module in tqdm.tqdm(
list(dummy_model.named_modules()), desc="Planning operations"
):
wi = name_to_wi.get(name + ".weight")
bias_wi = name_to_wi.get(name + ".bias")
if wi is None:
if hasattr(module, "weight"):
logger.warning(
f"Weight {name} present in model but not in architecture info"
)
wi = WeightInfo(
name=name + ".weight",
optional=True,
is_embed=isinstance(module, nn.Embedding),
)
else:
continue
if (
(not embed_lora)
and (
module == embed_in
or module == embed_out
or isinstance(module, nn.Embedding)
)
and not any(re.search(r, name) for r in exclude_regexes or [])
):
# If embeddings are not explicitly excluded but embed_lora is False,
# save them at full rank instead of decomposing
key = name.split(".")[-1]
if key not in modules_to_save:
logger.warning(f"Adding {key} to modules_to_save")
modules_to_save.append(key)
if name in modules_to_save or (name.split(".")[-1] in modules_to_save):
logger.info(f"Planning to save {name} at full rank")
targets.extend(plan_module_to_save(model_ref, writer_task, wi, bias_wi))
elif _should_extract(name):
if isinstance(module, (nn.Linear, nn.Conv1d, nn.Conv2d, nn.Embedding)):
logger.info(f"Planning LoRA extraction for {name}")
targets.extend(
plan_lora_module(
base_model_ref,
model_ref,
wi,
bias_wi,
writer_task,
max_rank,
distribute_scale,
transpose=isinstance(module, nn.Embedding),
sv_epsilon=sv_epsilon,
)
)
else:
key = name.split(".")[-1]
message = (
f"{key} has unsupported module type {type(module).__name__} - "
+ ("skipping" if skip_undecomposable else "saving at full rank")
)
if not skip_undecomposable:
# into modules_to_save it goes
if key not in modules_to_save:
modules_to_save.append(key)
targets.extend(
plan_module_to_save(model_ref, writer_task, wi, bias_wi)
)
if key not in warned_modules:
logger.warning(message)
warned_modules.add(key)
save_tasks = [t for t in targets if isinstance(t, (SaveTensor, LoRAModuleSaveTask))]
finalize = FinalizeModel(tensor_save_tasks=save_tasks, writer_task=writer_task)
return PlanResults(
tasks=targets + [finalize],
base_vocab_size=base_vocab,
final_vocab_size=ft_vocab,
)
def plan_lora_module(
base_model_ref: ModelReference,
model_ref: ModelReference,
wi: WeightInfo,
bias_wi: Optional[WeightInfo],
writer_task: TensorWriterTask,
max_rank: int,
distribute_scale: bool = True,
transpose: bool = False,
sv_epsilon: float = 0,
) -> List[Task]:
targets = []
base_load_task = _wi_load(base_model_ref, wi)
model_load_task = _wi_load(model_ref, wi)
tv_task = TaskVectorTask(base_tensor=base_load_task, model_tensor=model_load_task)
decomp_task = TaskVectorDecompositionTask(
weight_info=wi,
input_task=tv_task,
max_rank=max_rank,
distribute_scale=distribute_scale,
transpose=transpose,
sv_epsilon=sv_epsilon,
)
targets.append(decomp_task)
targets.append(
LoRAModuleSaveTask(
weight_info=wi,
writer_task=writer_task,
model_ref=model_ref,
decomposition_task=decomp_task,
)
)
if bias_wi is not None:
base_bias_load_task = _wi_load(base_model_ref, bias_wi)
model_bias_load_task = _wi_load(model_ref, bias_wi)
tv_bias_task = TaskVectorTask(
base_tensor=base_bias_load_task, model_tensor=model_bias_load_task
)
base_bias_name = bias_wi.name.removesuffix(".bias")
name_out = f"base_model.model.{base_bias_name}.lora_B.bias"
targets.append(
SaveTensor(
tensor_name=name_out,
tensor_task=tv_bias_task,
writer_task=writer_task,
optional=bias_wi.optional,
clone=False,
)
)
return targets
def plan_module_to_save(
model_ref: ModelReference,
writer_task: TensorWriterTask,
wi: WeightInfo,
bias_wi: Optional[WeightInfo],
):
save_tasks = []
load_task = _wi_load(model_ref, wi)
save_task = SaveTensor(
tensor_name=f"base_model.model.{wi.name}",
tensor_task=load_task,
writer_task=writer_task,
optional=wi.optional,
clone=False,
)
save_tasks.append(save_task)
if bias_wi is not None:
bias_load_task = _wi_load(model_ref, bias_wi)
bias_save_task = SaveTensor(
tensor_name=f"base_model.model.{bias_wi.name}",
tensor_task=bias_load_task,
writer_task=writer_task,
optional=bias_wi.optional,
clone=False,
)
save_tasks.append(bias_save_task)
return save_tasks
def all_weights_map(
model_ref: ModelReference, options: MergeOptions
) -> Dict[str, WeightInfo]:
name_to_wi = {}
model_cfg = model_ref.config(trust_remote_code=options.trust_remote_code)
arch_info = ArchitectureInfoUtils.get_architecture_info(model_cfg)
for wi in arch_info.all_weights(model_cfg):
name_to_wi[wi.name] = wi
return name_to_wi
if __name__ == "__main__":
main()
|