Views
No views yet
13% smaller, quality improved (0.8693x 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-production", torch_dtype="bfloat16", device_map="auto")
4tokenizer = AutoTokenizer.from_pretrained("dystrio/gemma-2-2b-it-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 | 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.226891 GB (13% smaller) |
| PPL ratio | 0.8693 |
| Chat prefill TPS | 23404.0 (+8%) |
| RAG TTFT p95 | 66.554 ms (-5%) |
| Decode TPS | 60.7 (flat) |
| Parameters | 2.27B |
| Tier | HuggingFace | Size | PPL Ratio | Use Case |
|---|---|---|---|---|
| default | dystrio/gemma-2-2b-it-sculpt-default | 4.441124 GB | 0.7985 | Zero-regret: quality preserved, smaller footprint |
| production | dystrio/gemma-2-2b-it-sculpt-production 👈 this model | 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.3959 | -0.1135 |
| HellaSwag | 0.5375 | 0.4762 | -0.0613 |
| MMLU | 0.5691 | 0.4287 | -0.1404 |
| TruthfulQA MC2 | 0.5322 | 0.5055 | -0.0267 |