File size: 16,613 Bytes
e1624f5 | 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 | """
OncoAgent β QLoRA Fine-Tuning Script (Unsloth-Accelerated).
Uses Unsloth's FastLanguageModel for 2x faster training with 60% less VRAM
on AMD Instinct MI300X (ROCm). 4-bit NF4 quantization via bitsandbytes.
Key features:
- Unsloth-optimized kernels for Attention + Loss computation
- Tier-adaptive hyperparameters (batch size, LoRA rank, seq length)
- Automatic checkpoint resume on crash recovery
- Eval split monitoring to detect overfitting
- Training metadata saved for reproducibility audits
Hardware Target: AMD Instinct MI300X (gfx942) via ROCm 7.0 + HIP.
Rule Compliance: #3 (Qwen 3.5/3.6, format ChatML), #14 (QLoRA + bitsandbytes + PEFT),
#22 (reproducibility seeds), #24 (.env), #26 (type hints).
"""
import argparse
import json
import os
import time
import logging
from dataclasses import dataclass
from typing import Dict, List, Optional, Any
# ββ Critical AMD MI300X Environment βββββββββββββββββββββββββββββββββββββββββ
# Must be set BEFORE any ROCm/HIP library is invoked.
os.environ["HSA_OVERRIDE_GFX_VERSION"] = "9.4.2"
os.environ["HF_HUB_DISABLE_XET"] = "1"
from dotenv import load_dotenv
load_dotenv()
import torch
from datasets import Dataset
# Unsloth MUST be imported before trl to apply monkey-patches correctly
from unsloth import FastLanguageModel
from trl import SFTTrainer, SFTConfig
# ββ Reproducibility (Rule #22) ββββββββββββββββββββββββββββββββββββββββββββββ
SEED: int = 42
torch.manual_seed(SEED)
if torch.cuda.is_available():
torch.cuda.manual_seed_all(SEED)
# ββ Logging βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
logging.basicConfig(
level=os.getenv("LOG_LEVEL", "INFO"),
format="%(asctime)s [%(levelname)s] %(message)s",
)
logger = logging.getLogger(__name__)
# ββ Tier-Adaptive Configuration βββββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class TierConfig:
"""Tier-specific hyperparameters tuned for MI300X 192GB HBM3."""
model_id: str
lora_r: int
lora_alpha: int
max_seq_length: int
batch_size: int
gradient_accumulation: int
learning_rate: float
num_epochs: int
save_steps: int
TIER_CONFIGS: Dict[int, TierConfig] = {
1: TierConfig(
model_id="Qwen/Qwen3.5-9B",
lora_r=16,
lora_alpha=32,
max_seq_length=2048,
batch_size=8, # Proven ~16s/step throughput on MI300X with Unsloth
gradient_accumulation=2, # Effective batch = 16
learning_rate=2e-4,
num_epochs=3, # Maximize clinical knowledge retention within ~2.5h on MI300X
save_steps=500,
),
2: TierConfig(
model_id="Qwen/Qwen3.6-27B",
lora_r=32, # Higher rank for 27B capacity
lora_alpha=64,
max_seq_length=2048,
batch_size=4, # 27B needs smaller micro-batch
gradient_accumulation=4, # Effective batch = 16
learning_rate=1e-4, # Lower LR for larger model stability
num_epochs=1,
save_steps=250, # More frequent checkpoints for 27B
),
}
# ββ Shared Constants ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
OUTPUT_DIR: str = os.path.join("models", "oncoagent_adapters")
TRAIN_FILE: str = os.path.join("data", "final", "train_oncoagent.jsonl")
EVAL_FILE: str = os.path.join("data", "final", "train_oncoagent_eval.jsonl")
LORA_DROPOUT: float = 0.0 # Unsloth optimized: 0 dropout for speed
LORA_TARGET_MODULES: List[str] = [
"q_proj", "k_proj", "v_proj", "o_proj",
"gate_proj", "up_proj", "down_proj",
]
WARMUP_RATIO: float = 0.03
WEIGHT_DECAY: float = 0.01
MAX_GRAD_NORM: float = 1.0
os.makedirs(OUTPUT_DIR, exist_ok=True)
os.makedirs(os.path.join("data", "final"), exist_ok=True)
# ββ Data Loading ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def load_jsonl_dataset(path: str, label: str = "data") -> Dataset:
"""Load a JSONL file into a HuggingFace Dataset.
Args:
path: Path to the JSONL file.
label: Human-readable label for logging.
Returns:
HuggingFace Dataset object.
Raises:
FileNotFoundError: If the file does not exist.
"""
if not os.path.exists(path):
raise FileNotFoundError(
f"{label} file not found: {path}. "
"Run download_hf_datasets.py and synthetic_generator.py first, "
"then unify with dataset_builder.py."
)
texts: List[str] = []
with open(path, "r", encoding="utf-8") as f:
for line in f:
try:
entry = json.loads(line.strip())
text = entry.get("text", "")
if text:
texts.append(text)
except json.JSONDecodeError:
continue
logger.info(f"π Loaded {len(texts):,} {label} samples from {path}")
return Dataset.from_dict({"text": texts})
# ββ Model Setup (Unsloth) ββββββββββββββββββββββββββββββββββββββββββββββββββ
def setup_model_and_tokenizer(
config: TierConfig,
) -> tuple:
"""Load model with Unsloth's FastLanguageModel (4-bit, LoRA-ready).
Args:
config: The tier-specific configuration.
Returns:
Tuple of (model, tokenizer).
"""
# FastLanguageModel imported at module level
hf_token: Optional[str] = os.getenv("HF_TOKEN")
logger.info(f"π¦ Loading model via Unsloth: {config.model_id}")
logger.info(f" Device: cuda (ROCm maps cudaβhip, gfx942 via HSA_OVERRIDE)")
logger.info(f" Quantization: 4-bit NF4 (Unsloth managed)")
logger.info(f" LoRA rank: {config.lora_r}, alpha: {config.lora_alpha}")
# Unsloth handles quantization, model loading, and optimization in one call
model, tokenizer = FastLanguageModel.from_pretrained(
model_name=config.model_id,
max_seq_length=config.max_seq_length,
load_in_4bit=True,
token=hf_token,
)
# Extract the actual tokenizer for pad_token setup
# Qwen3.5 returns a Qwen3VLProcessor wrapper
actual_tokenizer = tokenizer.tokenizer if hasattr(tokenizer, "tokenizer") else tokenizer
logger.info(f" Tokenizer type: {type(tokenizer).__name__} β inner: {type(actual_tokenizer).__name__}")
logger.info(f" EOS token: {actual_tokenizer.eos_token!r}")
if actual_tokenizer.pad_token is None:
actual_tokenizer.pad_token = actual_tokenizer.eos_token
# Apply LoRA via Unsloth's optimized path
model = FastLanguageModel.get_peft_model(
model,
r=config.lora_r,
lora_alpha=config.lora_alpha,
lora_dropout=LORA_DROPOUT,
target_modules=LORA_TARGET_MODULES,
bias="none",
use_gradient_checkpointing="unsloth", # Unsloth's 2x speedup
random_state=SEED,
)
trainable = sum(p.numel() for p in model.parameters() if p.requires_grad)
total = sum(p.numel() for p in model.parameters())
logger.info(
f"π§ LoRA applied: {trainable:,} trainable / {total:,} total "
f"({100 * trainable / total:.2f}%)"
)
return model, actual_tokenizer # Return inner tokenizer for SFTTrainer compatibility
# ββ Training Metadata βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _save_training_metadata(
output_dir: str,
config: TierConfig,
train_samples: int,
eval_samples: int,
duration_seconds: float,
final_metrics: Optional[Dict[str, Any]] = None,
) -> None:
"""Save a JSON metadata file alongside the adapter for audit trails.
Args:
output_dir: Directory to save to.
config: The tier config used.
train_samples: Number of training samples.
eval_samples: Number of eval samples.
duration_seconds: Wall-clock training time.
final_metrics: Optional metrics from trainer.
"""
meta: Dict[str, Any] = {
"project": "OncoAgent",
"model_id": config.model_id,
"tier": 1 if "9B" in config.model_id else 2,
"lora_r": config.lora_r,
"lora_alpha": config.lora_alpha,
"max_seq_length": config.max_seq_length,
"effective_batch_size": config.batch_size * config.gradient_accumulation,
"learning_rate": config.learning_rate,
"num_epochs": config.num_epochs,
"train_samples": train_samples,
"eval_samples": eval_samples,
"duration_seconds": round(duration_seconds, 1),
"duration_human": time.strftime("%Hh %Mm %Ss", time.gmtime(duration_seconds)),
"hardware": "AMD Instinct MI300X (192GB HBM3)",
"framework": "Unsloth 2026.5.2 + ROCm 7.0 + bitsandbytes (NF4) + PEFT/LoRA",
"seed": SEED,
}
if final_metrics:
meta["final_metrics"] = {
k: round(v, 6) if isinstance(v, float) else v
for k, v in final_metrics.items()
}
path = os.path.join(output_dir, "training_metadata.json")
with open(path, "w", encoding="utf-8") as f:
json.dump(meta, f, indent=2, ensure_ascii=False)
logger.info(f"π Training metadata saved to {path}")
# ββ Training ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def train(
tier: int,
max_steps: int = -1,
resume: bool = False,
) -> str:
"""Execute the Unsloth-accelerated QLoRA training pipeline.
Args:
tier: The architectural tier to train (1 for 9B, 2 for 27B).
max_steps: If > 0, stop training after this many steps (useful for dry runs).
resume: If True, resume from the last checkpoint in the output directory.
Returns:
Path to the saved adapter directory.
"""
# SFTTrainer, SFTConfig imported at module level
config = TIER_CONFIGS.get(tier)
if not config:
raise ValueError(f"Invalid tier: {tier}. Must be 1 or 2.")
logger.info(f"π Starting OncoAgent Unsloth Training Pipeline (Tier {tier})")
logger.info("=" * 60)
logger.info(f" Model: {config.model_id}")
logger.info(f" Engine: Unsloth FastLanguageModel (2x speedup)")
logger.info(f" LoRA rank: {config.lora_r}")
logger.info(f" Batch size: {config.batch_size} Γ {config.gradient_accumulation} = {config.batch_size * config.gradient_accumulation}")
logger.info(f" Learning rate: {config.learning_rate}")
logger.info(f" Epochs: {config.num_epochs}")
logger.info(f" Seq length: {config.max_seq_length}")
logger.info(f" HSA_GFX: {os.environ.get('HSA_OVERRIDE_GFX_VERSION', 'NOT SET')}")
logger.info("=" * 60)
# Setup
model, tokenizer = setup_model_and_tokenizer(config)
train_dataset = load_jsonl_dataset(TRAIN_FILE, "training")
# Eval dataset (optional β graceful degradation if missing)
eval_dataset: Optional[Dataset] = None
eval_samples: int = 0
try:
eval_dataset = load_jsonl_dataset(EVAL_FILE, "evaluation")
eval_samples = len(eval_dataset)
except FileNotFoundError:
logger.warning("β οΈ Eval file not found β training without evaluation metrics")
# Output directory
tier_output_dir: str = os.path.join(OUTPUT_DIR, f"tier{tier}")
os.makedirs(tier_output_dir, exist_ok=True)
# Detect checkpoint for resume
resume_checkpoint: Optional[str] = None
if resume:
checkpoints = sorted([
os.path.join(tier_output_dir, d)
for d in os.listdir(tier_output_dir)
if d.startswith("checkpoint-")
])
if checkpoints:
resume_checkpoint = checkpoints[-1]
logger.info(f"β»οΈ Resuming from checkpoint: {resume_checkpoint}")
else:
logger.warning("β οΈ --resume requested but no checkpoint found, starting fresh")
# SFTConfig = TrainingArguments + SFT-specific fields (trl >=0.14)
sft_config = SFTConfig(
output_dir=tier_output_dir,
num_train_epochs=config.num_epochs,
per_device_train_batch_size=config.batch_size,
gradient_accumulation_steps=config.gradient_accumulation,
learning_rate=config.learning_rate,
weight_decay=WEIGHT_DECAY,
warmup_steps=int(WARMUP_RATIO * (len(train_dataset) // (config.batch_size * config.gradient_accumulation))),
lr_scheduler_type="cosine",
logging_steps=10,
max_steps=max_steps,
save_steps=config.save_steps,
save_total_limit=3,
fp16=not torch.cuda.is_bf16_supported(),
bf16=torch.cuda.is_bf16_supported(),
gradient_checkpointing=True,
gradient_checkpointing_kwargs={"use_reentrant": False},
max_grad_norm=MAX_GRAD_NORM,
seed=SEED,
report_to="none",
optim="adamw_8bit",
# SFT-specific fields
max_length=config.max_seq_length,
packing=True, # Pack multiple short samples into one sequence for ~2.5x throughput
dataset_text_field="text",
eos_token=None, # Prevent EOS_TOKEN mismatch with Qwen3 tokenizers
# No eval during training β too slow for 5h target. Eval post-training.
eval_strategy="no",
)
# SFTTrainer from trl β Unsloth patches this for 2x speed
trainer = SFTTrainer(
model=model,
processing_class=tokenizer, # Inner tokenizer (not VLM processor) for packing compat
train_dataset=train_dataset,
args=sft_config,
)
# Train
t0 = time.time()
logger.info("ποΈ Training started...")
train_result = trainer.train(resume_from_checkpoint=resume_checkpoint)
duration = time.time() - t0
# Save final adapter
final_path: str = os.path.join(tier_output_dir, "final")
model.save_pretrained(final_path)
tokenizer.save_pretrained(final_path)
# Save training metadata
_save_training_metadata(
output_dir=final_path,
config=config,
train_samples=len(train_dataset),
eval_samples=eval_samples,
duration_seconds=duration,
final_metrics=train_result.metrics if train_result else None,
)
# Final report
logger.info("=" * 60)
logger.info(f"π TRAINING COMPLETE FOR TIER {tier} ({config.model_id})")
logger.info(f" Adapter saved to: {final_path}")
logger.info(f" Train samples: {len(train_dataset):,}")
logger.info(f" Eval samples: {eval_samples:,}")
logger.info(f" Duration: {time.strftime('%Hh %Mm %Ss', time.gmtime(duration))}")
logger.info(f" Final train loss: {train_result.metrics.get('train_loss', 'N/A')}")
if eval_dataset:
eval_results = trainer.evaluate()
logger.info(f" Final eval loss: {eval_results.get('eval_loss', 'N/A')}")
logger.info("=" * 60)
# Cleanup VRAM
del model, trainer
if torch.cuda.is_available():
torch.cuda.empty_cache()
return final_path
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="OncoAgent Unsloth QLoRA Fine-Tuning (Dual-Tier Qwen Architecture)"
)
parser.add_argument(
"--tier",
type=int,
choices=[1, 2],
required=True,
help="Select the architectural tier to train (1 = Qwen 3.5 9B Speed, 2 = Qwen 3.6 27B Reasoning)",
)
parser.add_argument(
"--max_steps",
type=int,
default=-1,
help="Maximum number of training steps (useful for validation/dry-runs)",
)
parser.add_argument(
"--resume",
action="store_true",
help="Resume from the last checkpoint (critical for crash recovery on cloud instances)",
)
args = parser.parse_args()
train(args.tier, max_steps=args.max_steps, resume=args.resume)
|