screen-reader-testing
Test web applications with screen readers including VoiceOver, NVDA, and JAWS. Use when validating screen reader compatibility, debugging accessibility issues,…
Configure LoRA and QLoRA supervised fine-tuning with current best-practice hyperparameters. Use when writing or reviewing a LoRA/QLoRA training configuration, choosing rank/alpha/target modules, or deciding between LoRA, QLoRA, and full fine-tuning.
$ npx -y skills add wshobson/agents --skill lora-qlora-recipes --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/lora-qlora-recipesContext preview
The summary Claude sees to decide when to auto-load this skill.
Configure LoRA and QLoRA supervised fine-tuning with current best-practice hyperparameters. Use when writing or reviewing a LoRA/QLoRA training configuration, choosing rank/alpha/target modules, or deciding between LoRA, QLoRA, and full fine-tuning.
name: lora-qlora-recipes description: Configure LoRA and QLoRA supervised fine-tuning with current best-practice hyperparameters. Use when writing or reviewing a LoRA/QLoRA training configuration, choosing rank/alpha/target modules, or deciding between LoRA, QLoRA, and full fine-tuning.
This skill assumes the routing decision already happened — `finetuning-method-selection` should have already pointed here because the data shape is demonstrations (SFT), not preference pairs or a verifiable reward signal. What follows is the current best-practice recipe for configuring the adapter itself: which modules to target, how to size rank and alpha, what learning rate to use, and when QLoRA buys real headroom versus when it just adds risk. Dataset preparation and quality checks are a separate concern — see `dataset-curation`.
**Input:** a routing decision (SFT via LoRA/ QLoRA) plus a target size class. **Output format:** a validated adapter config — the kwarg values below, not free-form advice — that `llm-finetuning-training-engineer` consumes directly when it generates a runnable script.
The reference recipe is "LoRA Without Regret" (Thinking Machines/Schulman, 2025-09), now the settled convention for LoRA/QLoRA SFT.
Target **all-linear** modules, not just attention:
target_modules = [
"q_proj", "k_proj", "v_proj", "o_proj", # attention
"gate_proj", "up_proj", "down_proj", # MLP — matters most
]The MLP layers (`gate_proj`, `up_proj`, `down_proj`) matter most — attention-only targeting was the older, weaker convention. Dropping modules to save memory is a Failure Mode below, not a valid optimization.
convention (NeurIPS 2025 "intruder dimensions" result). Don't hand-tune alpha independently of rank — derive it from rank every time.
full-fine-tune LR.** For QLoRA specifically, **2e-4** is the standard starting point. Full hyperparameter tables and worked examples: `references/hyperparameters.md`.
Rank is task-shaped, not a single global default:
| Task | Rank | |---|---| | RL (GRPO/RLVR adapters) | 1–32 | | General default | 16–32 | | SFT at scale | up to ~256 |
Higher rank isn't automatically better — it raises capacity to memorize as fast as it raises capacity to generalize. Start at the row matching the task, and only move up a row if the lower rank measurably underfits on held-out eval, not as a default hedge.
Keep **effective batch size under 32**. This recipe was validated at that scale — pushing effective batch higher is an untested extrapolation, not a free throughput win.
Unsloth is the reference implementation this plugin assumes as the default fast path — except for messages-shaped conversational SFT with `assistant_only_loss=True`, where Unsloth 2026.7.x's compiled trainer has no messages-shaped path at all and the plain-TRL escape hatch (`references/unsloth-trl-mapping.md`) is the default for that combination, not a rare-regression fallback. Its out-of-the-box defaults, and why each one is set that way:
path assumes zero dropout; setting a nonzero value forfeits the fused-kernel speedup.
parameters for negligible quality gain at this rank range.
Unsloth's checkpointing variant, not vanilla HF checkpointing; saves roughly **30% VRAM** over no checkpointing.
optimizer-state memory with negligible quality impact at LoRA/QLoRA adapter scale.
initialization for reproducibility across runs; treat it like any other seed, not a tunable.
These show up together on the `get_peft_model` call:
model = FastLanguageModel.get_peft_model(
model,
r=32,
target_modules=target_modules,
lora_alpha=64, # 2 * r
lora_dropout=0,
bias="none",
use_gradient_checkpointing="unsloth",
random_state=3407,
)Exact kwarg names and their plain-TRL/PEFT equivalents, plus a full worked config including `SFTConfig`: `references/unsloth-trl-mapping.md` and `references/hyperparameters.md`.
| Situation | Default choice | |---|---| | Adapting behavior on demonstrations | LoRA | | Base model doesn't fit in bf16 at target rank | QLoRA | | Injecting dense new domain knowledge | Full FT (see `finetuning-method-selection`) | | Unsure which one | LoRA — upgrade to QLoRA only if memory forces it |
BF16 adapters. This is what makes a 65B-class model trainable on 48GB — the quantized base is the memory win, not the adapter itself.
it for dense knowledge injection where the goal is changing what the model knows at the weight level, not adapting a behavior. For everything else in this skill's scope, LoRA or QLoRA is the starting assumption.
equivalent bf16 LoRA run would**, even though QLoRA's steady-state footprint is smaller — bitsandbytes dequantization buffers are transient CUDA-side allocations that spike during load. A QLoRA OOM is not proof the model doesn't fit; the `dgx-spark-ops` plugin's `spark-memory-thermal-ops` skill covers the full OOM remediation ladder (bf16 LoRA is the next thing to try, not a further QLoRA shrink).
in fp16 on hardware that doesn't have solid BF16 support is a known source of loss spikes and silent divergence. Force `bf16=True` wherever the hardware supports it; don't fall back to fp16 as if it were equivalent. Che
Production-ready agentic workflow building blocks: 94 plugins, 202 agents, 183 skills, 105 commands — built for Claude Code and consumed natively by OpenAI Codex CLI, Cursor, OpenCode, the Antigravity CLI, GitHub Copilot, and Pi from a single Markdown source.
Repo: wshobson/agents
Test web applications with screen readers including VoiceOver, NVDA, and JAWS. Use when validating screen reader compatibility, debugging accessibility issues,…
Conduct WCAG 2.2 accessibility audits with automated testing, manual verification, and remediation guidance. Use when auditing websites for accessibility,…
Coordinate parallel code reviews across multiple quality dimensions with finding deduplication, severity calibration, and consolidated reporting. Use this…
Debug complex issues using competing hypotheses with parallel investigation, evidence collection, and root cause arbitration. Use this skill when debugging…
Coordinate parallel feature development with file ownership strategies, conflict avoidance rules, and integration patterns for multi-agent implementation. Use…
Decompose complex tasks, design dependency graphs, and coordinate multi-agent work with proper task descriptions and workload balancing. Use this skill when…