Views
No views yet
| Model | WikiText-2 PPL | Method |
|---|---|---|
| LLaMA-2-7B (dense) | 5.47 | — |
| SVD-LLM(W) | 8.38 | Whitened SVD truncation |
| DynRank | 7.63 | Factor training + dynamic rank |
| SpecTurn Phase 1 | 6.51 | Shadow-guided dense training |
| SpecTurn Phase 1+2 | 6.18 | + Factor fine-tuning with KL distillation |
phase2-best-r02/1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained(
4 "zhc12/specturn-llama2-7b",
5 subfolder="phase2-best-r02",
6 torch_dtype="auto",
7 device_map="auto",
8)
9tokenizer = AutoTokenizer.from_pretrained("meta-llama/Llama-2-7b-hf")phase1-dense-teacher/phase2-factors-r02/factors.pt (224 modules × (U, s, V)), allocator.pt, rank_allocation.json. For research use.1@article{specturn2026,
2 title={Training Dense Weights for Low-Rank Compression: Shadow-Guided Spectral Restructuring},
3 author={Zhang, Huicheng},
4 year={2026},
5}