Views
No views yet

| Method | Compression | State | PIQA 🧠 | HellaSwag 🔄 | LAMBADA 🦙 | ARC-e 🔬 | ARC-c 🧩 | SciQ 📚 | Race 🏁 | MMLU 🎓 | Avg. Acc 📊 | LAMBADA PPL ↓ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Qwen3-14B (dense) | – | baseline | 79.86 | 78.85 | 67.88 | 82.82 | 60.23 | 96.50 | 43.25 | 77.20 | 73.32 | 3.7 |
| Qwen3-8B (dense) | – | baseline | 77.70 | 74.90 | 64.10 | 80.70 | 56.70 | 95.70 | 40.90 | 73.00 | 70.46 | 4.6 |
| ROCKET-Qwen3-8B | 40% (14B→8B) | training-free | 72.68 | 62.63 | 70.26 | 67.76 | 44.19 | 91.20 | 39.80 | 59.99 | 63.56 | 3.8 |
| ROCKET-Qwen3-8B (healed) ✨ | 40% + 30M tokens | light fine-tune | 78.45 🏆 | 73.54 | 64.86 🏆 | 76.94 | 51.45 | 95.10 | 40.67 | 66.69 | 68.46 | 4.6 |
🌍 Environmental Impact: ROCKET consumes 100× less energy and produces 23× lower CO₂ emissions than iterative dictionary learning baselines.

pytorch/pytorch:2.7.1-cuda12.6-cudnn9-devel pip install -e .rocket-run-pipeline --config "./rocket/config/default.yaml"1rocket-profile-layers --config CONFIG # To do profiling only
2rocket-compress --config CONFIG #run compression only
3rocket-evaluate --config CONFIG # Evaluation only
4rocket-gather-activations --config CONFIG # Prepare Calibration data1from transformers import AutoModelForCausalLM, AutoTokenizer
2from modeling_llama_svdllm_opt import LlamaForCausalLM
3model = LlamaForCausalLM.from_pretrained("MODEL_PATH", device_map="cuda", torch_dtype="float16", compression_path="./cr_llama.json")
4tokenizer = AutoTokenizer.from_pretrained("MODEL_PATH")
5model.optimize()
6model = torch.compile(model, mode="reduce-overhead", fullgraph=True)1@article{ali2026rocket0,
2 title = {ROCKET: Rapid Optimization via Calibration-guided Knapsack Enhanced Truncation for Efficient Model Compression},
3 author = {Ammar Ali and Baher Mohammad and Denis Makhov and Dmitriy Shopkhoev and Magauiya Zhussip and Stamatios Lefkimmiatis},
4 year = {2026},
5 journal = {arXiv preprint arXiv: 2602.11008}
6}
71@article{macko2025macko0,
2 title = {MACKO: Sparse Matrix-Vector Multiplication for Low Sparsity},
3 author = {Vladimír Macko and Vladimír Boža},
4 year = {2025},
5 journal = {arXiv preprint arXiv: 2511.13061}
6}