Views
No views yet
26% smaller, +27% faster prefill, 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.1-8B-Instruct-sculpt-throughput", torch_dtype="bfloat16", device_map="auto")
4tokenizer = AutoTokenizer.from_pretrained("dystrio/Llama-3.1-8B-Instruct-sculpt-throughput")
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 | 13.8879 | 1.0 | 14.957527 | 10570.4 | 126.745 | 66.8 |
| sculpt-default | 14.7778 | 1.0641 | 13.457527 | 11418.6 | 116.957 | 65.5 |
| sculpt-production | 21.9236 | 1.5786 | 11.863777 | 12760.5 | 112.529 | 66.7 |
| sculpt-throughput | 27.7463 | 1.9979 | 11.020027 | 13408.6 | 104.086 | 67.5 |
| sculpt-experimental | 29.3853 | 2.1159 | 10.832527 | 13483.3 | 103.432 | 67.4 |
| Metric | Value |
|---|---|
| Weights memory | 11.020027 GB (26% smaller) |
| PPL ratio | 1.9979 |
| Chat prefill TPS | 13408.6 (+27%) |
| RAG TTFT p95 | 104.086 ms (-18%) |
| Decode TPS | 67.5 (flat) |
| Parameters | 5.92B |
| Tier | HuggingFace | Size | PPL Ratio | Use Case |
|---|---|---|---|---|
| default | dystrio/Llama-3.1-8B-Instruct-sculpt-default | 13.457527 GB | 1.0641 | Zero-regret: quality preserved, smaller footprint |
| production | dystrio/Llama-3.1-8B-Instruct-sculpt-production | 11.863777 GB | 1.5786 | Practical savings with modest quality tradeoff |
| throughput | dystrio/Llama-3.1-8B-Instruct-sculpt-throughput 👈 this model | 11.020027 GB | 1.9979 | Maximum usable compression for speed/edge |
| experimental | dystrio/Llama-3.1-8B-Instruct-sculpt-experimental | 10.832527 GB | 2.1159 | 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.5358 | 0.3439 | -0.1919 |
| HellaSwag | 0.5977 | 0.4353 | -0.1624 |
| MMLU | 0.6844 | 0.3278 | -0.3566 |
| TruthfulQA MC2 | 0.5456 | 0.4817 | -0.0639 |