Views
No views yet
9% smaller, quality improved (0.7985x 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/gemma-2-2b-it-sculpt-default", torch_dtype="bfloat16", device_map="auto")
4tokenizer = AutoTokenizer.from_pretrained("dystrio/gemma-2-2b-it-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 | 25.7807 | 1.0 | 4.869591 | 21611.9 | 70.251 | 59.6 |
| sculpt-default | 20.5854 | 0.7985 | 4.441124 | 23065.3 | 69.007 | 60.0 |
| sculpt-production | 22.4118 | 0.8693 | 4.226891 | 23404.0 | 66.554 | 60.7 |
| sculpt-throughput | 29.8372 | 1.1573 | 3.969811 | 24330.1 | 64.529 | 59.3 |
| sculpt-experimental | 48.9699 | 1.8995 | 3.412804 | 26496.2 | 60.97 | 59.5 |
| Metric | Value |
|---|---|
| Weights memory | 4.441124 GB (9% smaller) |
| PPL ratio | 0.7985 |
| Chat prefill TPS | 23065.3 (+7%) |
| RAG TTFT p95 | 69.007 ms (-2%) |
| Decode TPS | 60.0 (flat) |
| Parameters | 2.38B |
| Tier | HuggingFace | Size | PPL Ratio | Use Case |
|---|---|---|---|---|
| default | dystrio/gemma-2-2b-it-sculpt-default 👈 this model | 4.441124 GB | 0.7985 | Zero-regret: quality preserved, smaller footprint |
| production | dystrio/gemma-2-2b-it-sculpt-production | 4.226891 GB | 0.8693 | Practical savings with modest quality tradeoff |
| throughput | dystrio/gemma-2-2b-it-sculpt-throughput | 3.969811 GB | 1.1573 | Maximum usable compression for speed/edge |
| experimental | dystrio/gemma-2-2b-it-sculpt-experimental | 3.412804 GB | 1.8995 | 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.5094 | 0.4386 | -0.0708 |
| HellaSwag | 0.5375 | 0.5032 | -0.0343 |
| MMLU | 0.5691 | 0.5016 | -0.0675 |
| TruthfulQA MC2 | 0.5322 | 0.5242 | -0.0080 |