Views
No views yet
Aletheia provides a reproducible training-efficiency improvement over standard LoRA across multiple model families and scales, with bounded extra forgetting on downstream benchmarks.
| Metric | Value |
|---|---|
| arXiv ID | 2604.15351 |
| Successful models | 14 |
| Architecture families | 8 |
| Scale range | 0.5B-72B |
| Experiment rows | 81 |
| Mean speedup | 23.1% |
| Speedup range | 15-28% |
| Benchmarks | MMLU, GSM8K, HumanEval |
1git clone https://github.com/aletheiaprotocol-ai/aletheia-lora.git
2cd aletheia-lora
3pip install -e .1from aletheia_lora import gradient_probe, select_layers, apply_aletheia_lora
2from peft import get_peft_model
3
4layer_scores = gradient_probe(
5 model=model,
6 dataset=train_dataset,
7 num_layers=36,
8 probe_batches=5,
9)
10
11selected_layers = select_layers(layer_scores, top_pct=50)
12peft_config = apply_aletheia_lora(model, selected_layers, r=16, lora_alpha=32)
13model = get_peft_model(model, peft_config)1peft_config = apply_aletheia_lora(
2 model,
3 selected_layers,
4 attention_r=16,
5 mlp_r=64,
6)1@misc{saket2026aletheia,
2 title={Aletheia: Gradient-Guided Layer Selection for Efficient LoRA Fine-Tuning Across Architectures},
3 author={Saket, Abdulmalek},
4 year={2026},
5 eprint={2604.15351},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 doi={10.48550/arXiv.2604.15351},
9 url={https://arxiv.org/abs/2604.15351}
10}