File size: 5,736 Bytes
f987b51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5d01bd8
f987b51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77985f4
f987b51
77985f4
 
 
 
 
f987b51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5d01bd8
f987b51
 
 
 
 
3a21a9b
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
---
license: apache-2.0
library_name: transformers
pipeline_tag: text-generation
language:
  - en
base_model: mistralai/Mistral-7B-Instruct-v0.3
tags:
  - dystrio
  - sculpt
  - pruned
  - compressed
  - efficient
  - dense
  - runtime-agnostic
  - no-custom-kernels
  - hf-drop-in
  - drop-in-replacement
  - smaller
  - faster
  - mistral
datasets:
  - wikitext
model-index:
  - name: Dystrio Sculpt (Mistral-7B-Instruct-v0.3 Production)
    results:
      - task:
          type: text-generation
        dataset:
          name: WikiText-103 (validation)
          type: wikitext
        metrics:
          - name: perplexity
            type: perplexity
            value: 14.2859
          - name: ppl_ratio
            type: ppl_ratio
            value: 1.134
---

# dystrio/Mistral-7B-Instruct-v0.3-sculpt-production

> **17% smaller, +15% faster prefill, drop-in replacement. No custom kernels. No runtime changes.**

Dystrio Sculpt structurally compresses transformer models, producing dense models that load with standard `transformers` β€” no custom code, no new ops, no deployment friction.

This is the **Production** tier of [Mistral 7B Instruct v0.3](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.3).

## Quick Start

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("dystrio/Mistral-7B-Instruct-v0.3-sculpt-production", torch_dtype="bfloat16", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained("dystrio/Mistral-7B-Instruct-v0.3-sculpt-production")

inputs = tokenizer("The future of AI inference is", return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=100)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
```

## Benchmark Results

All tiers compiled from [Mistral 7B Instruct v0.3](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.3) on A100 80GB, bf16:

| Model | PPL | PPL Ratio | Weights (GB) | Chat Prefill TPS | RAG TTFT p95 (ms) | Decode TPS |
|-------|-----|-----------|-------------|------------------|-------------------|------------|
| **Baseline** | 12.5983 | 1.0 | 13.500496 | 10557.3 | 133.325 | 66.8 |
| **sculpt-default** | 11.6283 | 0.923 | 12.000496 | 11594.3 | 123.069 | 65.3 |
| **sculpt-production** | 14.2859 | 1.134 | 11.250496 | 12093.9 | 120.842 | 66.0 |
| **sculpt-throughput** | 16.3355 | 1.2966 | 10.406746 | 12667.0 | 112.683 | 65.8 |
| **sculpt-experimental** | 25.1515 | 1.9964 | 9.562996 | 13595.9 | 110.293 | 66.5 |

### Key Metrics (this model)

| Metric | Value |
|--------|-------|
| **Weights memory** | 11.250496 GB (17% smaller) |
| **PPL ratio** | 1.134 |
| **Chat prefill TPS** | 12093.9 (+15%) |
| **RAG TTFT p95** | 120.842 ms (-9%) |
| **Decode TPS** | 66.0 (flat) |
| **Parameters** | 6.04B |

## All Sculpt Tiers

| Tier | HuggingFace | Size | PPL Ratio | Use Case |
|------|-------------|------|-----------|----------|
| default | [dystrio/Mistral-7B-Instruct-v0.3-sculpt-default](https://huggingface.co/dystrio/Mistral-7B-Instruct-v0.3-sculpt-default) | 12.000496 GB | 0.923 | Zero-regret: quality preserved, smaller footprint |
| production | [dystrio/Mistral-7B-Instruct-v0.3-sculpt-production](https://huggingface.co/dystrio/Mistral-7B-Instruct-v0.3-sculpt-production) πŸ‘ˆ **this model** | 11.250496 GB | 1.134 | Practical savings with modest quality tradeoff |
| throughput | [dystrio/Mistral-7B-Instruct-v0.3-sculpt-throughput](https://huggingface.co/dystrio/Mistral-7B-Instruct-v0.3-sculpt-throughput) | 10.406746 GB | 1.2966 | Maximum usable compression for speed/edge |
| experimental | [dystrio/Mistral-7B-Instruct-v0.3-sculpt-experimental](https://huggingface.co/dystrio/Mistral-7B-Instruct-v0.3-sculpt-experimental) | 9.562996 GB | 1.9964 | Boundary exploration, maximum structural compression |

## What is Dystrio Sculpt?

Dystrio Sculpt compiles transformer models into smaller, faster variants. Output models:

- Are **dense** (not sparse) β€” standard architecture, fewer parameters
- Load with **standard HuggingFace Transformers** β€” no custom code needed
- Require **no custom kernels** and **no runtime changes**
- Work as a one-step compile before deployment
- Stack with quantization (AWQ, GPTQ, GGUF) for compound savings

## Compatibility

- βœ… HuggingFace Transformers
- βœ… vLLM
- βœ… TGI (Text Generation Inference)
- βœ… llama.cpp / GGUF conversion
- βœ… AWQ / GPTQ quantization
- βœ… Any framework that loads standard safetensors

## Benchmark Environment

- **GPU**: NVIDIA A100-SXM4-80GB
- **dtype**: bf16
- **Torch**: 2.10.0+cu128
- **Transformers**: 5.3.0
- **Deterministic**: True
- Single-GPU, standard HuggingFace Transformers, no custom kernels.

## Metric Definitions

- **PPL ratio**: WikiText-103 perplexity relative to baseline. <1.0 = quality improved.
- **Prefill TPS**: Tokens per second during prompt encoding (higher = faster).
- **TTFT p95**: Time to first token at 95th percentile (lower = faster).
- **Decode TPS**: Tokens per second during generation (higher = faster).
- **Weights (GB)**: Model parameter memory (deterministic, runtime-independent).

## Citation

```bibtex
@misc{dystrio_sculpt_2026,
  title={Dystrio Sculpt: Structural Compilation for Transformer LLMs},
  author={Dystrio},
  year={2026},
  url={https://huggingface.co/dystrio}
}
```

## Downstream Benchmarks (lm-eval)

Evaluated with [lm-eval-harness](https://github.com/EleutherAI/lm-evaluation-harness) on A100-80GB, bf16, zero-shot.

| Benchmark | Baseline | This Model | Delta |
|-----------|:--------:|:----------:|:-----:|
| ARC-Challenge | 0.5794 | 0.4573 | -0.1221 |
| HellaSwag | 0.6573 | 0.5657 | -0.0916 |
| MMLU | 0.5975 | 0.4814 | -0.1161 |
| TruthfulQA MC2 | 0.5939 | 0.5018 | -0.0921 |