PEFT Doctor
PEFT Doctor is a local pre-flight checker and repair tool for LoRA, QLoRA, PEFT, TRL, Transformers, bitsandbytes, and Accelerate training projects.
It catches common failures before a GPU job starts: CUDA out of memory risk, NaN loss settings, wrong LoRA target modules, missing tokenizer padding, bad chat templates, empty assistant answers, broken label masks, incomplete checkpoints, unsafe adapter merges, and distributed configuration conflicts.
python -m pip install -U peft-doctor
peft-doctor check train.py --dataset data.jsonl --model llama-3-8b --explain
peft-doctor fix --dry-run train.py
The core package is lightweight and works without downloading a model. Install the optional training stack only when a command needs Transformers, PEFT, Torch, or a tokenizer:
python -m pip install -U "peft-doctor[ml]"
Start Here
For an existing project, run these commands in order:
# 1. Check the environment, script, and dataset.
peft-doctor env
peft-doctor check train.py --dataset data.jsonl --model llama-3-8b --explain
# 2. Preview supported edits. This does not change the file.
peft-doctor fix --dry-run train.py
# 3. Write a separate patched script after reviewing the preview.
peft-doctor fix --input train.py --output train.fixed.py
# 4. Check the data and estimate memory.
peft-doctor dataset-doctor data.jsonl --sequence-length 2048
peft-doctor estimate --model llama-3-8b --seq-len 2048 --batch-size 1 --qlora --target-vram 16
For a new project, use the wizard or copy a recipe:
peft-doctor init --model llama3 --gpu T4 --dataset-type chat --target-vram 16 --output-dir my-run
peft-doctor recipe qwen2-qlora-colab --copy qwen-run
peft-doctor validate-recipe qwen-run
What The Results Mean
Every check returns one of four severities:
| Severity | Meaning |
|---|---|
ERROR |
A checked contradiction or broken artifact was found. Fix it before relying on the run. |
WARNING |
A risky or unverifiable setting needs review. |
OK |
The named rule passed. It is not a guarantee that training will succeed. |
INFO |
Context, a limitation, or a manual follow-up. |
Reports can be printed as a table, JSON, or Markdown. The main check command can also write HTML and PDF:
peft-doctor check train.py --dataset data.jsonl --output json
peft-doctor check train.py --dataset data.jsonl --html-report report.html --pdf-report report.pdf
Auto-Repair
fix supports Python scripts, JSON configs, and JSON/JSONL datasets.
# Preview a training-script patch.
peft-doctor fix --dry-run train.py
# Write to a new path.
peft-doctor fix --input train.py --output train.fixed.py --family llama
# Preview config changes.
peft-doctor fix --config config.json --dry-run
# Mask pad-token labels in place after making a backup.
peft-doctor fix --dataset data.jsonl --write --pad-token-id 0
Supported script and config repairs include:
- add
tokenizer.pad_token = tokenizer.eos_tokenwhen no pad-token setup is present; - set
model.config.use_cache = Falsewhen gradient checkpointing is enabled; - turn off
fp16whenfp16andbf16are both enabled; - replace high-risk batch size or sequence length literals;
- add
warmup_ratio,logging_steps, andsave_strategywhere supported; - replace missing or risky LoRA target module lists with a selected model-family profile;
- flag
lm_headand embedding targets for manual review; - set label values to
-100at the supplied pad-token positions.
The fixer is intentionally narrow. It will report changes it cannot make safely instead of rewriting arbitrary Python.
Dataset Checks
Use dataset-doctor for structure and training-format checks:
peft-doctor dataset-doctor data.jsonl --sequence-length 2048
Use dataset-intel for row counts, duplicates, empty assistant messages, assistant-only conversations, malformed data, phrase-based review markers, and character-set distribution:
peft-doctor dataset-intel data.jsonl --limit 5000
peft-doctor dataset-report data.jsonl --output dataset-report.html
The phrase checks are review filters. They do not determine whether an answer is true, hallucinated, malicious, or safe.
Check tokenized labels directly when a dataset contains input_ids and labels:
peft-doctor label-audit tokenized.jsonl --pad-token-id 0
This reports length mismatches, rows where every label is -100, rows with no ignored labels, unmasked pad positions, and the measured supervised-token ratio.
Check train/eval leakage with exact matching and token-set Jaccard similarity:
peft-doctor leakage-check train.jsonl eval.jsonl --threshold 0.90 --limit 10000
TRL And Chat Templates
Check an SFTConfig saved as JSON or YAML against the dataset:
peft-doctor sft-check sft-config.yaml \
--dataset data.jsonl \
--chat-template chat-template.jinja
The command checks assistant_only_loss, completion_only_loss, packing strategy, padding-free attention requirements, maximum length, dataset shape, and {% generation %} markers.
Check a template by itself or compare its role handling with a dataset:
peft-doctor chat-template-check tokenizer_config.json \
--dataset chat.jsonl \
--assistant-only-loss
LoRA And QLoRA Configuration
Generate target modules or a starter configuration:
peft-doctor targets --model meta-llama/Llama-3-8B
peft-doctor targets --family gpt2 --no-mlp
peft-doctor safe-config --family qwen --output json
Check a current LoraConfig or adapter_config.json:
peft-doctor lora-config-check adapter_config.json
peft-doctor lora-config-check lora.yaml --compiled --hotswap
This covers rank, alpha, dropout, all-linear, risky embedding targets, trainable_token_indices, weight tying, aLoRA merge limitations, QALoRA group size, initialization mode, and target_parameters with compiled hotswap.
Check a bitsandbytes configuration:
peft-doctor quantization-check bnb-config.json --gpu T4 --training
This catches simultaneous 4-bit and 8-bit loading, reviews NF4 for 4-bit training, checks explicit compute dtype, flags T4/bf16 plans, and compares FSDP storage and model dtypes when both are present.
Memory, Runtime, And Cost
Estimate VRAM before model loading:
peft-doctor estimate \
--model llama-3-8b \
--seq-len 2048 \
--batch-size 1 \
--qlora \
--target-vram 16
The VRAM estimate is formula-based. Framework allocations, kernels, padding, optimizer choice, and model architecture can change the real peak.
If the model name does not contain its size, pass it explicitly. Architecture overrides are useful for an unrecognized family:
peft-doctor estimate --model ./local-model --params-billion 8 --hidden-size 4096 --num-layers 32 --qlora
Show the same estimate by training phase:
peft-doctor memory-timeline --model llama-3-8b --seq-len 4096 --batch-size 1 --qlora
Run a planning simulation without loading a model:
peft-doctor simulate \
--model llama-3-8b \
--dataset data.jsonl \
--gpu T4 \
--tokens-per-second 750 \
--epochs 3 \
--checkpoint-gb 0.8 \
--save-total-limit 2 \
--disk-free-gb 20
Runtime is shown only when measured tokens per second is supplied. Disk use is shown only when checkpoint size is supplied.
Calculate cloud cost from provider prices and throughput you measured on the same workload:
peft-doctor estimate-cost \
--model llama-3-8b \
--dataset-size 8000 \
--seq-len 2048 \
--epochs 3 \
--offer "L4:0.80:750" \
--offer "A100:1.90:1800"
Each offer is NAME:HOURLY_RATE:TOKENS_PER_SECOND. PEFT Doctor does not ship a price table because provider rates and measured throughput change.
Adapters, Hotswap, And Merge
Inspect a saved adapter before upload or merge:
peft-doctor inspect-adapter ./adapter --base-model meta-llama/Llama-3-8B
peft-doctor adapter-integrity ./adapter --write-checksums adapter_checksums.json
peft-doctor adapter-tensors ./adapter --output json
adapter-tensors reads safetensors headers without loading tensor data. It reports exact tensor count, parameter count, dtype counts, tensor ranks, and file bytes.
Compare two adapters using their configuration and actual local files:
peft-doctor compare-adapters ./adapter-r16 ./adapter-r64
The comparison does not predict which adapter is better. Use held-out evaluation metrics for that decision.
Check PEFT hotswap compatibility:
peft-doctor hotswap-check ./adapter-loaded ./adapter-next
peft-doctor hotswap-check ./adapter-loaded ./adapter-next --compiled --prepared-max-rank 64
Before a final merge, inspect the plan:
peft-doctor adapter-check \
--base-model meta-llama/Llama-3-8B \
--adapter ./adapter \
--output-dir ./merged
Run the merge only after the plan is clean:
peft-doctor merge-adapter \
--base-model meta-llama/Llama-3-8B \
--adapter ./adapter \
--output-dir ./merged \
--revision MODEL_COMMIT_SHA \
--dtype bf16
The merge command does not need a token for local public artifacts. For a private or gated model, log in with your own Hugging Face account outside the script.
--revision accepts a branch, tag, or commit SHA; a commit SHA makes the base-model and tokenizer download reproducible.
Checkpoints And Reproducibility
Find the latest structurally valid checkpoint:
peft-doctor checkpoint-list ./outputs
Inspect one checkpoint and compare it with current settings:
peft-doctor checkpoint-check ./outputs/checkpoint-500
peft-doctor resume-check ./outputs/checkpoint-500 --config training-config.json
Record and verify project files, package versions, platform details, and Git commit:
peft-doctor manifest . --output run-manifest.json
peft-doctor verify-manifest run-manifest.json
Distributed Training
Use the general Accelerate/DeepSpeed checker:
peft-doctor distributed-check accelerate.yaml --training-args training.json
Use the FSDP-specific checker for state dictionaries, CPU-efficient loading, synchronized module state, auto-wrapping, activation checkpointing, process count, and compile settings:
peft-doctor fsdp-check accelerate-fsdp.yaml --training-args training.json
Logs And Notebooks
Scan a Trainer log for NaN/Inf loss, gradient spikes, CUDA OOM, illegal memory access, disk errors, device mismatch, shape mismatch, and overlong input warnings:
peft-doctor analyze-log trainer.log
peft-doctor monitor trainer.log
monitor reports parsed loss direction and a local CUDA memory snapshot when Torch can read one. It does not assign a probability to future NaN loss.
Check a notebook before running it in Colab or Jupyter:
peft-doctor notebook-check model_merge.ipynb
The notebook checker looks for pasted Hugging Face token patterns, tokens passed in shell commands, brittle install cells, and quantized adapter-merge plans.
Recipes
Five complete projects are included:
llama3-qlora-colabqwen2-qlora-colab(alias:qwen-low-vram)mistral-lora-localgemma-low-vramcompletion-only-sft
Copy and validate one:
peft-doctor recipe llama3-qlora-colab --copy ./my-run
peft-doctor validate-recipe ./my-run
cd my-run
python train.py --dry-run
python train.py --revision MODEL_COMMIT_SHA --max-steps 10
Each project contains README.md, train.py, requirements.txt, sample_data.jsonl, expected_output.md, and tested_environment.md.
All Commands
Each example is safe to run locally unless it explicitly performs a merge or writes a file.
| Command | What to use it for | Example |
|---|---|---|
check |
Main script, model, dataset, trainer, tokenizer, memory, and risk check | peft-doctor check train.py --dataset data.jsonl --model llama-3-8b --revision MODEL_COMMIT_SHA --explain |
fix |
Preview or write supported script, config, and dataset repairs | peft-doctor fix --input train.py --output train.fixed.py |
estimate |
Formula-based VRAM planning | peft-doctor estimate --model llama-3-8b --seq-len 2048 --batch-size 1 --qlora |
init |
Generate a complete project from model, GPU, dataset type, and VRAM | peft-doctor init --model qwen2 --gpu L4 --dataset-type chat --target-vram 24 --output-dir run |
diagnose |
Prioritize local script, dataset, model, and memory findings | peft-doctor diagnose train.py --dataset data.jsonl --model llama-3-8b --gpu T4 |
simulate |
Check VRAM, evaluation, runtime inputs, and checkpoint schedule without training | peft-doctor simulate --model llama-3-8b --dataset data.jsonl --gpu T4 |
memory-timeline |
Break the VRAM formula into load, forward, backward, and optimizer phases | peft-doctor memory-timeline --model llama-3-8b --qlora |
estimate-cost |
Calculate cost from supplied rate and measured throughput | peft-doctor estimate-cost --model llama-3-8b --dataset-size 8000 --offer "L4:0.80:750" |
advise-hparams |
Get a rule-based rank, alpha, and dropout starting point | peft-doctor advise-hparams --model llama-3-8b --dataset-size 8000 --gpu-vram 24 |
monitor |
Summarize log failures, loss direction, and local GPU memory | peft-doctor monitor trainer.log |
auto-tune |
Lower estimated memory while preserving effective batch | peft-doctor auto-tune --model llama-3-8b --batch-size 4 --grad-accum 1 --target-vram 16 |
score |
Summarize checked errors and warnings with the documented rule score | peft-doctor score train.py --dataset data.jsonl --model llama-3-8b --gpu T4 |
dataset-intel |
Count dataset rule matches and rows without flagged issues | peft-doctor dataset-intel data.jsonl |
dataset-report |
Write a static HTML dataset report | peft-doctor dataset-report data.jsonl --output dataset-report.html |
dataset-doctor |
Check rows, formats, roles, duplicates, lengths, and labels | peft-doctor dataset-doctor data.jsonl --sequence-length 2048 |
inspect-dataset |
Print a compact dataset pre-flight report | peft-doctor inspect-dataset data.jsonl |
leakage-check |
Find exact and high-overlap train/eval pairs | peft-doctor leakage-check train.jsonl eval.jsonl --threshold 0.9 |
label-audit |
Inspect pretokenized supervision and pad masking | peft-doctor label-audit tokenized.jsonl --pad-token-id 0 |
sft-check |
Check TRL selective loss, packing, padding-free mode, and dataset format | peft-doctor sft-check sft.yaml --dataset data.jsonl --chat-template template.jinja |
chat-template-check |
Check template variables, roles, and generation markers | peft-doctor chat-template-check tokenizer_config.json --dataset chat.jsonl --assistant-only-loss |
lora-config-check |
Check current PEFT LoRA fields and variant combinations | peft-doctor lora-config-check adapter_config.json |
quantization-check |
Check bitsandbytes 4/8-bit, NF4, dtype, and FSDP settings | peft-doctor quantization-check bnb.json --gpu T4 |
lora-efficiency |
Review rank and target coverage without quality guessing | peft-doctor lora-efficiency --model llama-3-8b --rank 32 |
compare-adapters |
Compare two local adapter configs and actual file metadata | peft-doctor compare-adapters ./adapter-a ./adapter-b |
inspect-adapter |
Check adapter config, weights, and base-model metadata | peft-doctor inspect-adapter ./adapter --base-model org/model |
adapter-integrity |
Validate safetensors structure and write/verify SHA-256 hashes | peft-doctor adapter-integrity ./adapter --write-checksums adapter_checksums.json |
adapter-tensors |
Count exact tensors, parameters, dtypes, and file bytes | peft-doctor adapter-tensors ./adapter --output json |
hotswap-check |
Compare two adapters before PEFT hotswap | peft-doctor hotswap-check ./loaded ./incoming --compiled --prepared-max-rank 64 |
adapter-check |
Validate an adapter merge plan without loading the model | peft-doctor adapter-check --base-model org/model --adapter ./adapter --output-dir ./merged |
merge-adapter |
Merge a LoRA adapter into its base model | peft-doctor merge-adapter --base-model org/model --revision MODEL_COMMIT_SHA --adapter ./adapter --output-dir ./merged |
checkpoint-list |
Inventory every checkpoint and select the latest structurally valid one | peft-doctor checkpoint-list ./outputs |
checkpoint-check |
Inspect one Trainer/Accelerate checkpoint | peft-doctor checkpoint-check ./outputs/checkpoint-500 |
resume-check |
Compare checkpoint metadata with current settings | peft-doctor resume-check ./outputs/checkpoint-500 --config config.json |
training-plan |
Calculate effective batch, optimizer steps, warmup, and saves | peft-doctor training-plan --dataset-size 8000 --batch-size 1 --grad-accum 8 --epochs 3 |
disk-check |
Compare real free disk with an explicit checkpoint budget | peft-doctor disk-check ./outputs --checkpoint-gb 1.2 --save-total-limit 2 --reserve-gb 5 |
token-lengths |
Measure tokenizer-specific or approximate length percentiles | peft-doctor token-lengths data.jsonl --model Qwen/Qwen2.5-7B --revision MODEL_COMMIT_SHA --max-length 2048 |
distributed-check |
Check Accelerate and DeepSpeed precision, process, and offload conflicts | peft-doctor distributed-check accelerate.yaml --training-args training.json |
fsdp-check |
Check FSDP-specific loading, wrapping, state, and compile settings | peft-doctor fsdp-check accelerate-fsdp.yaml --training-args training.json |
generation-check |
Validate EOS, padding, lengths, sampling, and beam settings | peft-doctor generation-check ./merged-model |
analyze-log |
Scan and explain common training-log failures | peft-doctor analyze-log trainer.log |
scan-log |
Print the lower-level log scan | peft-doctor scan-log trainer.log --output markdown |
notebook-check |
Check a Colab/Jupyter notebook | peft-doctor notebook-check train.ipynb |
scan-notebook |
Run the same notebook scanner under its original command name | peft-doctor scan-notebook train.ipynb |
profiles |
Show a built-in model-family profile | peft-doctor profiles qwen |
targets |
Recommend LoRA target module names | peft-doctor targets --model Qwen/Qwen2.5-7B |
safe-config |
Print starter LoRA, QLoRA, and Trainer values | peft-doctor safe-config --family llama --output json |
recipe |
Print a config recipe or copy a runnable project | peft-doctor recipe gemma-low-vram --copy ./gemma-run |
validate-recipe |
Confirm all required recipe files and values are present | peft-doctor validate-recipe ./gemma-run |
benchmark |
Run the packaged pre-flight validation scenario for a recipe | peft-doctor benchmark --recipe llama3-qlora-colab |
validate |
Write a local Markdown validation report | peft-doctor validate --model qwen --dataset sample.jsonl --report report.md |
manifest |
Create a reproducibility manifest | peft-doctor manifest . --output run-manifest.json |
verify-manifest |
Detect changed files and package-version drift | peft-doctor verify-manifest run-manifest.json |
upgrade-suggestions |
Compare installed versions with declared package minimums | peft-doctor upgrade-suggestions |
gpu-fingerprint |
Show local GPU identity or a built-in reference VRAM note | peft-doctor gpu-fingerprint "RTX 4090" |
history |
Append or read local experiment notes | peft-doctor history . --add-status completed --metric "eval_loss=1.82" |
knowledge-base |
Search bundled troubleshooting rules | peft-doctor knowledge-base "CUDA illegal memory access" |
chat |
Match a question with local rules plus optional dataset/log checks | peft-doctor chat "Why is my loss exploding?" --dataset data.jsonl --log trainer.log |
optimize |
Combine fixer, dataset, memory, and report checks | peft-doctor optimize . --html-report optimize-report.html |
audit |
Enforce a local team policy file | peft-doctor audit . --policy peft-policy.yml |
cloud |
Show the hosted-service roadmap; it uploads nothing | peft-doctor cloud |
env |
Show Python, CUDA, Colab, and package status | peft-doctor env --output json |
colab |
Print a Colab installation and pre-flight cell | peft-doctor colab |
version |
Print the installed package version | peft-doctor version |
The detailed option guide is in docs/commands.md. All documentation links are absolute so they work from both GitHub and PyPI.
Python API
from peft_doctor import diagnose_peft
report = diagnose_peft(
model=model,
tokenizer=tokenizer,
peft_config=peft_config,
training_args=training_args,
train_dataset=train_dataset,
)
for issue in report.sorted_issues():
print(issue.severity, issue.code, issue.message)
Create starter configs:
from peft_doctor import (
create_safe_bnb_config,
create_safe_lora_config,
create_safe_training_args,
)
peft_config = create_safe_lora_config(model_name="meta-llama/Llama-3-8B")
bnb_config = create_safe_bnb_config()
training_args = create_safe_training_args()
Guard Trainer logs:
from peft_doctor import NanLossGuard
guard = NanLossGuard()
for issue in guard.update({"loss": float("nan"), "grad_norm": 145.0}):
print(issue.code, issue.fix)
Colab
In a fresh notebook cell:
%pip install -q -U "peft-doctor[ml]"
Then run:
!peft-doctor env
!peft-doctor dataset-doctor /content/data.jsonl
!peft-doctor estimate --model llama-3-8b --seq-len 2048 --batch-size 1 --qlora --target-vram 16
Do not paste an access token into a notebook, command, config, or repository. Use your own Colab Secret, environment variable, or interactive Hugging Face login for private and gated models.
Scope And Evidence
PEFT Doctor performs static checks, bounded dataset sampling, local file validation, and formula-based planning. It does not claim to prove final model quality, training success, factual correctness, safety, or cloud performance.
The test suite covers fixer behavior, dataset checks, diagnostics, recipes, adapter merge plans, checkpoint integrity, manifests, distributed settings, generation settings, and the current PEFT/TRL checks described above.
- Compatibility matrix
- Command guide
- Troubleshooting guide
- Operational safety
- Privacy and security
- Contributing
License
PEFT Doctor is released under the MIT License.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file peft_doctor-0.9.0.tar.gz.
File metadata
- Download URL: peft_doctor-0.9.0.tar.gz
- Upload date:
- Size: 167.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6b8c2d17bd0a12b025b857bed329d5b2746582333f523559bb3a7ef1f710fd6
|
|
| MD5 |
fd09e44eb5243514185b33b68099830f
|
|
| BLAKE2b-256 |
05a19abcdeb73618fc6b660bf0d888590d011b1165b38df6919d8e0bc1cad347
|
File details
Details for the file peft_doctor-0.9.0-py3-none-any.whl.
File metadata
- Download URL: peft_doctor-0.9.0-py3-none-any.whl
- Upload date:
- Size: 120.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79d591e69b253804da9101091c088a55ccbf86b4f9ad77e10ce293ea21fca444
|
|
| MD5 |
1ac15a25c36149d2af03e0b554ff1ddd
|
|
| BLAKE2b-256 |
a815bb91a1f9cde5f0c479050ee3daab647d4b1043c1f4e7b173acc14c7305c7
|