CoolFace
Modelpublic

dystrio/Mistral-7B-Instruct-v0.3-sculpt-throughput

sourceHugging Faceapache-2.0updated 6mo agoView on Hugging Face
0likes28downloads
Model Card

dystrio/Mistral-7B-Instruct-v0.3-sculpt-throughput

23% smaller, +20% 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 Throughput tier of Mistral 7B Instruct v0.3.

Quick Start

python
from transformers import AutoModelForCausalLM, AutoTokenizer

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

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 on A100 80GB, bf16:

ModelPPLPPL RatioWeights (GB)Chat Prefill TPSRAG TTFT p95 (ms)Decode TPS
Baseline12.59831.013.50049610557.3133.32566.8
sculpt-default11.62830.92312.00049611594.3123.06965.3
sculpt-production14.28591.13411.25049612093.9120.84266.0
sculpt-throughput16.33551.296610.40674612667.0112.68365.8
sculpt-experimental25.15151.99649.56299613595.9110.29366.5

Key Metrics (this model)

MetricValue
Weights memory10.406746 GB (23% smaller)
PPL ratio1.2966
Chat prefill TPS12667.0 (+20%)
RAG TTFT p95112.683 ms (-15%)
Decode TPS65.8 (flat)
Parameters5.59B

All Sculpt Tiers

TierHuggingFaceSizePPL RatioUse Case
defaultdystrio/Mistral-7B-Instruct-v0.3-sculpt-default12.000496 GB0.923Zero-regret: quality preserved, smaller footprint
productiondystrio/Mistral-7B-Instruct-v0.3-sculpt-production11.250496 GB1.134Practical savings with modest quality tradeoff
throughputdystrio/Mistral-7B-Instruct-v0.3-sculpt-throughput ๐Ÿ‘ˆ this model10.406746 GB1.2966Maximum usable compression for speed/edge
experimentaldystrio/Mistral-7B-Instruct-v0.3-sculpt-experimental9.562996 GB1.9964Boundary 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 on A100-80GB, bf16, zero-shot.

BenchmarkBaselineThis ModelDelta
ARC-Challenge0.57940.3797-0.1997
HellaSwag0.65730.5075-0.1498
MMLU0.59750.3982-0.1993
TruthfulQA MC20.59390.4860-0.1079