mirror of
https://github.com/wassname/lora-lite.git
synced 2026-06-27 17:30:56 +08:00
fdb4c77d6c
- Fetch canonical reference impls for offline review:
* peft_{lora,hra,delora,ia3}_layer.py + peft_lora_{dora,variants}.py
* orig_pissa_init.py (MuLabPKU/PiSSA)
* orig_hra_layer.py (DaShenZi721/HRA)
* orig_delora.py (ExplainableML/DeLoRA author fork)
- Add reference-impl URLs to all 6 variant docstrings
- Document HRA gate=0 dead-grad issue and DoRA detach-omission in their docstrings
- Re-run external review (codex) with refs available -> docs/audit/variants_review_v2.md
Major NEW findings vs paper-only review:
* DeLoRA: scalar W.norm() should be per-input-channel norm(dim=0)
* HRA: PEFT uses symmetric repeated-column init (no dead grad), not zero gate
* IA3: FFN targets need input-side gating, not output, our up_proj advice wrong
* All LoRA-family: cfg.dropout silently ignored (no-op)
* DeLoRA: wnorm should be persistent buffer, not Parameter
HRA and DeLoRA upgraded to BUGGY (from Partial)
60 lines
2.5 KiB
Python
60 lines
2.5 KiB
Python
# Copyright 2023-present the HuggingFace Inc. team.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import torch
|
|
import os
|
|
from peft import LoraConfig, get_peft_model
|
|
from transformers import AutoTokenizer, AutoModelForCausalLM
|
|
import argparse
|
|
|
|
parser = argparse.ArgumentParser(description="Separate the principal singular value and singular vectors from base model")
|
|
parser.add_argument("--base_model_path", type=str, required=True, help="The name or path of the base model.")
|
|
parser.add_argument("--output_dir", type=str, required=True)
|
|
parser.add_argument("--bits", type=str, default="bf16", choices=["bf16", "fp16", "fp32"])
|
|
parser.add_argument("--init_weights", type=str, default="pissa", help="(`['pissa', 'pissa_niter_[number of iters]']`)")
|
|
parser.add_argument("--lora_r", type=int, default=128)
|
|
parser.add_argument("--lora_alpha", type=int, default=128)
|
|
parser.add_argument("--lora_dropout", type=float, default=0)
|
|
parser.add_argument('--target_modules', nargs='+', help='', required=True)
|
|
script_args = parser.parse_args()
|
|
print(script_args)
|
|
|
|
model = AutoModelForCausalLM.from_pretrained(
|
|
script_args.base_model_path,
|
|
torch_dtype=(
|
|
torch.float16
|
|
if script_args.bits == "fp16"
|
|
else (torch.bfloat16 if script_args.bits == "bf16" else torch.float32)
|
|
),
|
|
device_map="auto",
|
|
)
|
|
tokenizer = AutoTokenizer.from_pretrained(script_args.base_model_path)
|
|
tokenizer.pad_token_id = tokenizer.eos_token_id
|
|
lora_config = LoraConfig(
|
|
r=script_args.lora_r,
|
|
lora_alpha=script_args.lora_alpha,
|
|
init_lora_weights=True if script_args.init_weights=="True" else script_args.init_weights,
|
|
lora_dropout=script_args.lora_dropout,
|
|
target_modules=script_args.target_modules,
|
|
)
|
|
peft_model = get_peft_model(model, lora_config)
|
|
|
|
# Save PiSSA modules:
|
|
peft_model.peft_config["default"].init_lora_weights = True
|
|
peft_model.save_pretrained(os.path.join(script_args.output_dir, "pissa_init"))
|
|
# Save residual model:
|
|
peft_model = peft_model.unload()
|
|
peft_model.save_pretrained(script_args.output_dir)
|
|
# Save the tokenizer:
|
|
tokenizer.save_pretrained(script_args.output_dir) |