caf324b09d
Build documentation / build (push) Failing after 0s
Deploy "method_comparison" Gradio to Spaces / deploy (push) Has been cancelled
Deploy "PEFT shop" Gradio app to Spaces / deploy (push) Has been cancelled
tests on transformers main / tests (push) Has been cancelled
tests / check_code_quality (push) Has been cancelled
tests / tests (ubuntu-latest, 3.10) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.11) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.12) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.13) (push) Has been cancelled
tests / tests (windows-latest, 3.10) (push) Has been cancelled
tests / tests (windows-latest, 3.11) (push) Has been cancelled
tests / tests (windows-latest, 3.12) (push) Has been cancelled
tests / tests (windows-latest, 3.13) (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
CI security linting / zizmor latest via Cargo (push) Has been cancelled
204 lines
7.6 KiB
Python
204 lines
7.6 KiB
Python
import argparse
|
|
import os
|
|
|
|
import evaluate
|
|
import numpy as np
|
|
from datasets import load_dataset
|
|
from transformers import (
|
|
AutoModelForSequenceClassification,
|
|
AutoTokenizer,
|
|
DataCollatorWithPadding,
|
|
Trainer,
|
|
TrainingArguments,
|
|
)
|
|
|
|
# Assuming MonteCLoRA is available in your local installed PEFT version
|
|
from peft import LoraConfig, MontecloraConfig, TaskType, get_peft_model
|
|
from peft.helpers import MontecloraTrainerMixin as MonteCLoRATrainerMixin
|
|
from peft.utils import infer_device
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# 1. Trainer Definition
|
|
# ----------------------------------------------------------------------------
|
|
# Reuse the helper mixin so variational loss handling stays centralized.
|
|
class MonteCLoRATrainer(MonteCLoRATrainerMixin, Trainer):
|
|
pass
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# 2. Metrics Helper
|
|
# ----------------------------------------------------------------------------
|
|
# GLUE/MRPC uses Accuracy and F1 score
|
|
metric = evaluate.load("glue", "mrpc")
|
|
|
|
|
|
def compute_metrics(eval_pred):
|
|
predictions, labels = eval_pred
|
|
predictions = np.argmax(predictions, axis=1)
|
|
return metric.compute(predictions=predictions, references=labels)
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# 3. Main Training Function
|
|
# ----------------------------------------------------------------------------
|
|
def train_model(
|
|
base_model: str,
|
|
output_dir: str,
|
|
batch_size: int,
|
|
num_epochs: int,
|
|
learning_rate: float,
|
|
max_length: int,
|
|
device: str,
|
|
rank: int,
|
|
lora_alpha: int,
|
|
target_modules: str,
|
|
n_samples: int,
|
|
push_to_hub: bool,
|
|
hub_model_id: str,
|
|
):
|
|
hf_token = os.getenv("HF_TOKEN") or None
|
|
|
|
# --- Device Setup ---
|
|
device = infer_device()
|
|
print(f"Using device: {device}")
|
|
|
|
# --- Load Tokenizer ---
|
|
tokenizer = AutoTokenizer.from_pretrained(base_model, token=hf_token)
|
|
|
|
# --- Load Dataset (GLUE MRPC) ---
|
|
# MRPC is a classification task (Is sentence B a paraphrase of sentence A?)
|
|
dataset = load_dataset("glue", "mrpc")
|
|
|
|
def tokenize_function(examples):
|
|
return tokenizer(
|
|
examples["sentence1"], examples["sentence2"], padding="max_length", truncation=True, max_length=max_length
|
|
)
|
|
|
|
tokenized_datasets = dataset.map(tokenize_function, batched=True)
|
|
|
|
# Remove raw text columns to avoid Trainer warnings
|
|
tokenized_datasets = tokenized_datasets.remove_columns(["sentence1", "sentence2", "idx"])
|
|
tokenized_datasets = tokenized_datasets.rename_column("label", "labels")
|
|
tokenized_datasets.set_format("torch")
|
|
|
|
# --- Load Base Model ---
|
|
# num_labels=2 because MRPC is binary classification
|
|
model = AutoModelForSequenceClassification.from_pretrained(base_model, num_labels=2, token=hf_token)
|
|
|
|
# --- PEFT Configuration (MonteCLoRA) ---
|
|
# Note: Using n_samples to control Monte Carlo iterations
|
|
monte_clora_config = MontecloraConfig(num_samples=n_samples)
|
|
peft_config = LoraConfig(
|
|
task_type=TaskType.SEQ_CLS,
|
|
inference_mode=False,
|
|
r=rank,
|
|
lora_alpha=lora_alpha,
|
|
target_modules=target_modules.split(",") if target_modules else ["query", "value"],
|
|
bias="none",
|
|
monteclora_config=monte_clora_config,
|
|
)
|
|
|
|
# {'loss': 0.6984, 'grad_norm': 1.1652556657791138, 'learning_rate': 0.00019843478260869567, 'epoch': 0.04}
|
|
# {'loss': 0.6794, 'grad_norm': 1.619783878326416, 'learning_rate': 0.00019669565217391306, 'epoch': 0.09}
|
|
# {'loss': 0.7077, 'grad_norm': 0.7201359272003174, 'learning_rate': 0.00019495652173913045, 'epoch': 0.13}
|
|
# {'loss': 0.6822, 'grad_norm': 2.9292023181915283, 'learning_rate': 0.00019321739130434784, 'epoch': 0.17}
|
|
# {'loss': 0.6673, 'grad_norm': 0.6151084899902344, 'learning_rate': 0.0001914782608695652, 'epoch': 0.22}
|
|
# {'loss': 0.6674, 'grad_norm': 0.7056446671485901, 'learning_rate': 0.00018973913043478262, 'epoch': 0.26}
|
|
# Wrap model with PEFT
|
|
model = get_peft_model(model, peft_config)
|
|
model.print_trainable_parameters()
|
|
print(model)
|
|
model.to(device)
|
|
|
|
# --- Training Setup ---
|
|
data_collator = DataCollatorWithPadding(tokenizer=tokenizer)
|
|
|
|
training_args = TrainingArguments(
|
|
output_dir=output_dir,
|
|
num_train_epochs=num_epochs,
|
|
per_device_train_batch_size=batch_size,
|
|
per_device_eval_batch_size=batch_size,
|
|
learning_rate=learning_rate,
|
|
weight_decay=0.01,
|
|
eval_strategy="epoch", # Evaluate at end of every epoch
|
|
save_strategy="epoch",
|
|
load_best_model_at_end=True,
|
|
metric_for_best_model="f1", # Optimize for F1 score
|
|
logging_steps=10,
|
|
push_to_hub=push_to_hub,
|
|
hub_model_id=hub_model_id,
|
|
hub_token=hf_token,
|
|
remove_unused_columns=False, # Important for PEFT sometimes
|
|
)
|
|
|
|
# Trainer mixes in MonteCLoRA variational regularization support.
|
|
trainer = MonteCLoRATrainer(
|
|
model=model,
|
|
args=training_args,
|
|
train_dataset=tokenized_datasets["train"],
|
|
eval_dataset=tokenized_datasets["validation"], # MRPC standard validation split
|
|
tokenizer=tokenizer,
|
|
data_collator=data_collator,
|
|
compute_metrics=compute_metrics,
|
|
)
|
|
|
|
print("Starting Training...")
|
|
trainer.train()
|
|
|
|
# --- Evaluation ---
|
|
print("Evaluating...")
|
|
eval_results = trainer.evaluate()
|
|
print(f"Evaluation Results: {eval_results}")
|
|
|
|
# --- Save & Push ---
|
|
if push_to_hub:
|
|
trainer.push_to_hub()
|
|
|
|
trainer.save_model(output_dir)
|
|
print(f"Model saved to {output_dir}")
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# 4. Entry Point
|
|
# ----------------------------------------------------------------------------
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(description="Fine-tune RoBERTa on MRPC with MonteCLoRA")
|
|
|
|
parser.add_argument("--base_model", type=str, default="roberta-base", help="Base model name")
|
|
parser.add_argument("--output_dir", type=str, default="./monteclora-roberta-mrpc", help="Output directory")
|
|
parser.add_argument("--batch_size", type=int, default=16, help="Batch size (per device)")
|
|
parser.add_argument("--num_epochs", type=int, default=5, help="Training epochs")
|
|
parser.add_argument(
|
|
"--learning_rate", type=float, default=2e-4, help="Learning rate"
|
|
) # Higher LR for PEFT is common
|
|
parser.add_argument("--max_length", type=int, default=128, help="Max sequence length")
|
|
parser.add_argument("--device", type=str, default="auto", help="Device (cuda/cpu/auto)")
|
|
|
|
# MonteCLoRA specific args
|
|
parser.add_argument("--rank", type=int, default=8, help="LoRA Rank")
|
|
parser.add_argument("--lora_alpha", type=int, default=16, help="LoRA Alpha")
|
|
parser.add_argument("--target_modules", type=str, default="query,value", help="Modules to apply adapter to")
|
|
parser.add_argument("--n_samples", type=int, default=10, help="Number of MC samples")
|
|
|
|
parser.add_argument("--push_to_hub", action="store_true", help="Push to HF Hub")
|
|
parser.add_argument("--hub_model_id", type=str, default=None, help="Hub Repo ID")
|
|
|
|
args = parser.parse_args()
|
|
|
|
train_model(
|
|
base_model=args.base_model,
|
|
output_dir=args.output_dir,
|
|
batch_size=args.batch_size,
|
|
num_epochs=args.num_epochs,
|
|
learning_rate=args.learning_rate,
|
|
max_length=args.max_length,
|
|
device=args.device,
|
|
rank=args.rank,
|
|
lora_alpha=args.lora_alpha,
|
|
target_modules=args.target_modules,
|
|
n_samples=args.n_samples,
|
|
push_to_hub=args.push_to_hub,
|
|
hub_model_id=args.hub_model_id,
|
|
)
|