Text Generation
Transformers
Safetensors
English
llama
dystrio
sculpt
pruned
compressed
efficient
dense
runtime-agnostic
no-custom-kernels
hf-drop-in
drop-in-replacement
smaller
faster
conversational
Eval Results (legacy)
text-generation-inference
Instructions to use dystrio/Llama-3.1-8B-Instruct-sculpt-production with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dystrio/Llama-3.1-8B-Instruct-sculpt-production with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="dystrio/Llama-3.1-8B-Instruct-sculpt-production") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("dystrio/Llama-3.1-8B-Instruct-sculpt-production") model = AutoModelForCausalLM.from_pretrained("dystrio/Llama-3.1-8B-Instruct-sculpt-production", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use dystrio/Llama-3.1-8B-Instruct-sculpt-production with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "dystrio/Llama-3.1-8B-Instruct-sculpt-production" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dystrio/Llama-3.1-8B-Instruct-sculpt-production", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/dystrio/Llama-3.1-8B-Instruct-sculpt-production
- SGLang
How to use dystrio/Llama-3.1-8B-Instruct-sculpt-production with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "dystrio/Llama-3.1-8B-Instruct-sculpt-production" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dystrio/Llama-3.1-8B-Instruct-sculpt-production", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "dystrio/Llama-3.1-8B-Instruct-sculpt-production" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dystrio/Llama-3.1-8B-Instruct-sculpt-production", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use dystrio/Llama-3.1-8B-Instruct-sculpt-production with Docker Model Runner:
docker model run hf.co/dystrio/Llama-3.1-8B-Instruct-sculpt-production
File size: 5,695 Bytes
5991426 d7ae443 5991426 f186431 5991426 f186431 5991426 d7ae443 5991426 f92ab08 | 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: meta-llama/Llama-3.1-8B-Instruct
tags:
- dystrio
- sculpt
- pruned
- compressed
- efficient
- dense
- runtime-agnostic
- no-custom-kernels
- hf-drop-in
- drop-in-replacement
- smaller
- faster
- llama
datasets:
- wikitext
model-index:
- name: Dystrio Sculpt (Llama-3.1-8B-Instruct Production)
results:
- task:
type: text-generation
dataset:
name: WikiText-103 (validation)
type: wikitext
metrics:
- name: perplexity
type: perplexity
value: 21.9236
- name: ppl_ratio
type: ppl_ratio
value: 1.5786
---
# dystrio/Llama-3.1-8B-Instruct-sculpt-production
> **21% smaller, +21% 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 [Llama 3.1 8B Instruct](https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct).
## Quick Start
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("dystrio/Llama-3.1-8B-Instruct-sculpt-production", torch_dtype="bfloat16", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained("dystrio/Llama-3.1-8B-Instruct-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 [Llama 3.1 8B Instruct](https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct) on A100 80GB, bf16:
| Model | PPL | PPL Ratio | Weights (GB) | Chat Prefill TPS | RAG TTFT p95 (ms) | Decode TPS |
|-------|-----|-----------|-------------|------------------|-------------------|------------|
| **Baseline** | 13.8879 | 1.0 | 14.957527 | 10570.4 | 126.745 | 66.8 |
| **sculpt-default** | 14.7778 | 1.0641 | 13.457527 | 11418.6 | 116.957 | 65.5 |
| **sculpt-production** | 21.9236 | 1.5786 | 11.863777 | 12760.5 | 112.529 | 66.7 |
| **sculpt-throughput** | 27.7463 | 1.9979 | 11.020027 | 13408.6 | 104.086 | 67.5 |
| **sculpt-experimental** | 29.3853 | 2.1159 | 10.832527 | 13483.3 | 103.432 | 67.4 |
### Key Metrics (this model)
| Metric | Value |
|--------|-------|
| **Weights memory** | 11.863777 GB (21% smaller) |
| **PPL ratio** | 1.5786 |
| **Chat prefill TPS** | 12760.5 (+21%) |
| **RAG TTFT p95** | 112.529 ms (-11%) |
| **Decode TPS** | 66.7 (flat) |
| **Parameters** | 6.37B |
## All Sculpt Tiers
| Tier | HuggingFace | Size | PPL Ratio | Use Case |
|------|-------------|------|-----------|----------|
| default | [dystrio/Llama-3.1-8B-Instruct-sculpt-default](https://huggingface.co/dystrio/Llama-3.1-8B-Instruct-sculpt-default) | 13.457527 GB | 1.0641 | Zero-regret: quality preserved, smaller footprint |
| production | [dystrio/Llama-3.1-8B-Instruct-sculpt-production](https://huggingface.co/dystrio/Llama-3.1-8B-Instruct-sculpt-production) π **this model** | 11.863777 GB | 1.5786 | Practical savings with modest quality tradeoff |
| throughput | [dystrio/Llama-3.1-8B-Instruct-sculpt-throughput](https://huggingface.co/dystrio/Llama-3.1-8B-Instruct-sculpt-throughput) | 11.020027 GB | 1.9979 | Maximum usable compression for speed/edge |
| experimental | [dystrio/Llama-3.1-8B-Instruct-sculpt-experimental](https://huggingface.co/dystrio/Llama-3.1-8B-Instruct-sculpt-experimental) | 10.832527 GB | 2.1159 | 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.5358 | 0.4019 | -0.1339 |
| HellaSwag | 0.5977 | 0.4740 | -0.1237 |
| MMLU | 0.6844 | 0.4078 | -0.2766 |
| TruthfulQA MC2 | 0.5456 | 0.4867 | -0.0589 |
|