Views
No views yet
7% smaller, quality improved (0.9678x PPL), drop-in replacement. No custom kernels. No runtime changes.
transformers — no custom code, no new ops, no deployment friction.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("dystrio/Llama-3.2-3B-Instruct-sculpt-default", torch_dtype="bfloat16", device_map="auto")
4tokenizer = AutoTokenizer.from_pretrained("dystrio/Llama-3.2-3B-Instruct-sculpt-default")
5
6inputs = tokenizer("The future of AI inference is", return_tensors="pt").to(model.device)
7outputs = model.generate(**inputs, max_new_tokens=100)
8print(tokenizer.decode(outputs[0], skip_special_tokens=True))| Model | PPL | PPL Ratio | Weights (GB) | Chat Prefill TPS | RAG TTFT p95 (ms) | Decode TPS |
|---|---|---|---|---|---|---|
| Baseline | 17.7333 | 1.0 | 5.984213 | 20742.1 | 75.219 | 74.7 |
| sculpt-default | 17.1627 | 0.9678 | 5.553549 | 21777.1 | 71.177 | 74.7 |
| sculpt-production | 21.554 | 1.2155 | 5.307455 | 22728.2 | 70.16 | 72.7 |
| sculpt-throughput | 26.9519 | 1.5198 | 4.999838 | 23116.0 | 69.412 | 72.3 |
| sculpt-experimental | 37.844 | 2.1341 | 4.446127 | 25457.5 | 68.204 | 73.1 |
| Metric | Value |
|---|---|
| Weights memory | 5.553549 GB (7% smaller) |
| PPL ratio | 0.9678 |
| Chat prefill TPS | 21777.1 (+5%) |
| RAG TTFT p95 | 71.177 ms (-5%) |
| Decode TPS | 74.7 (flat) |
| Parameters | 2.98B |
| Tier | HuggingFace | Size | PPL Ratio | Use Case |
|---|---|---|---|---|
| default | dystrio/Llama-3.2-3B-Instruct-sculpt-default 👈 this model | 5.553549 GB | 0.9678 | Zero-regret: quality preserved, smaller footprint |
| production | dystrio/Llama-3.2-3B-Instruct-sculpt-production | 5.307455 GB | 1.2155 | Practical savings with modest quality tradeoff |
| throughput | dystrio/Llama-3.2-3B-Instruct-sculpt-throughput | 4.999838 GB | 1.5198 | Maximum usable compression for speed/edge |
| experimental | dystrio/Llama-3.2-3B-Instruct-sculpt-experimental | 4.446127 GB | 2.1341 | Boundary exploration, maximum structural compression |
1@misc{dystrio_sculpt_2026,
2 title={Dystrio Sculpt: Structural Compilation for Transformer LLMs},
3 author={Dystrio},
4 year={2026},
5 url={https://huggingface.co/dystrio}
6}| Benchmark | Baseline | This Model | Delta |
|---|---|---|---|
| ARC-Challenge | 0.4360 | 0.3737 | -0.0623 |
| HellaSwag | 0.5329 | 0.4971 | -0.0358 |
| MMLU | 0.6223 | 0.5272 | -0.0951 |
| TruthfulQA MC2 | 0.5138 | 0.4625 | -0.0513 |