Views
No views yet
14% smaller, +10% 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/Qwen2.5-3B-Instruct-sculpt-production", torch_dtype="bfloat16", device_map="auto")
4tokenizer = AutoTokenizer.from_pretrained("dystrio/Qwen2.5-3B-Instruct-sculpt-production")
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 | 14.0033 | 1.0 | 5.748009 | 22079.6 | 75.483 | 59.4 |
| sculpt-default | 15.5137 | 1.1079 | 5.220665 | 23360.8 | 73.544 | 59.0 |
| sculpt-production | 18.9373 | 1.3523 | 4.956993 | 24367.4 | 69.025 | 59.0 |
| sculpt-throughput | 22.8847 | 1.6342 | 4.640587 | 25556.6 | 68.084 | 59.0 |
| sculpt-experimental | 31.3266 | 2.2371 | 4.165977 | 26731.9 | 66.499 | 59.5 |
| Metric | Value |
|---|---|
| Weights memory | 4.956993 GB (14% smaller) |
| PPL ratio | 1.3523 |
| Chat prefill TPS | 24367.4 (+10%) |
| RAG TTFT p95 | 69.025 ms (-9%) |
| Decode TPS | 59.0 (flat) |
| Parameters | 2.66B |
| Tier | HuggingFace | Size | PPL Ratio | Use Case |
|---|---|---|---|---|
| default | dystrio/Qwen2.5-3B-Instruct-sculpt-default | 5.220665 GB | 1.1079 | Zero-regret: quality preserved, smaller footprint |
| production | dystrio/Qwen2.5-3B-Instruct-sculpt-production 👈 this model | 4.956993 GB | 1.3523 | Practical savings with modest quality tradeoff |
| throughput | dystrio/Qwen2.5-3B-Instruct-sculpt-throughput | 4.640587 GB | 1.6342 | Maximum usable compression for speed/edge |
| experimental | dystrio/Qwen2.5-3B-Instruct-sculpt-experimental | 4.165977 GB | 2.2371 | 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.4573 | 0.3814 | -0.0759 |
| HellaSwag | 0.5635 | 0.4734 | -0.0901 |
| MMLU | 0.6545 | 0.5497 | -0.1048 |
| TruthfulQA MC2 | 0.5874 | 0.5225 | -0.0649 |