CoolFace
Modelpublic

dystrio/Qwen3.5-9B-Sculpt-Default

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

Qwen3.5-9B-Sculpt-Default

5% FFN compression with live teacher distillation. Drop-in replacement — no custom kernels, no runtime changes.

Dystrio Sculpt structurally compresses transformer FFN layers, producing dense models that load with standard transformers.

This is the Default tier of Qwen3.5-9B.

Use case: Enterprise — maximum quality preservation

Benchmark Results (lm_eval)

ModelMMLUHellaSwagARC-CTruthfulQAWinograndeGSM8K
Qwen3.5-9B (baseline)78.778.155.653.773.087.3
Sculpt Default (kf=0.95)76.2 (↓2.5)75.8 (↓2.3)56.4 (↑0.8)52.6 (↓1.1)68.7 (↓4.3)81.5 (↓5.8)
Sculpt Production (kf=0.9)73.9 (↓4.8)75.1 (↓3.0)56.8 (↑1.2)47.3 (↓6.4)69.8 (↓3.2)74.5 (↓12.8)
Sculpt Throughput (kf=0.88)70.8 (↓7.9)74.0 (↓4.1)57.2 (↑1.6)52.0 (↓1.7)70.7 (↓2.3)69.6 (↓17.7)
Sculpt Experimental (kf=0.82)70.2 (↓8.5)70.7 (↓7.4)53.6 (↓2.0)47.6 (↓6.1)66.6 (↓6.4)54.7 (↓32.6)

This Model vs Baseline

BenchmarkDefaultBaselineDelta
arc_challenge56.455.6+0.8
gsm8k81.587.3-5.8
hellaswag75.878.1-2.3
mmlu76.278.7-2.5
mmluabstractalgebra54.066.0-12.0
mmlu_anatomy75.677.8-2.2
mmlu_astronomy90.192.8-2.7
mmlubusinessethics79.082.0-3.0
mmluclinicalknowledge82.386.8-4.5
mmlucollegebiology91.793.1-1.4
mmlucollegechemistry60.059.0+1.0
mmlucollegecomputer_science68.082.0-14.0
mmlucollegemathematics58.064.0-6.0
mmlucollegemedicine76.981.5-4.6
mmlucollegephysics61.864.7-2.9
mmlucomputersecurity85.083.0+2.0
mmluconceptualphysics87.290.2-3.0
mmlu_econometrics66.773.7-7.0
mmluelectricalengineering77.282.1-4.9
mmluelementarymathematics74.680.7-6.1
mmluformallogic65.165.9-0.8
mmluglobalfacts42.050.0-8.0
mmluhighschool_biology92.693.5-0.9
mmluhighschool_chemistry73.477.8-4.4
mmluhighschoolcomputerscience83.088.0-5.0
mmluhighschooleuropeanhistory83.087.3-4.3
mmluhighschool_geography90.992.4-1.5
mmluhighschoolgovernmentand_politics94.396.9-2.6
mmluhighschool_macroeconomics80.885.9-5.1
mmluhighschool_mathematics52.653.3-0.7
mmluhighschool_microeconomics88.793.3-4.6
mmluhighschool_physics67.572.8-5.3
mmluhighschool_psychology90.393.2-2.9
mmluhighschool_statistics74.578.7-4.2
mmluhighschoolushistory88.790.2-1.5
mmluhighschoolworldhistory86.989.9-3.0
mmluhumanaging75.878.9-3.1
mmluhumansexuality82.486.3-3.9
mmlu_humanities69.670.5-0.9
mmluinternationallaw87.690.1-2.5
mmlu_jurisprudence85.284.3+0.9
mmlulogicalfallacies85.384.7+0.6
mmlumachinelearning59.866.1-6.3
mmlu_management85.486.4-1.0
mmlu_marketing92.795.7-3.0
mmlumedicalgenetics88.091.0-3.0
mmlu_miscellaneous87.790.3-2.6
mmlumoraldisputes80.181.2-1.1
mmlumoralscenarios54.053.3+0.7
mmlu_nutrition83.386.3-3.0
mmlu_other80.383.1-2.8
mmlu_philosophy79.780.4-0.7
mmlu_prehistory81.284.3-3.1
mmluprofessionalaccounting65.265.6-0.4
mmluprofessionallaw59.360.3-1.0
mmluprofessionalmedicine89.091.5-2.5
mmluprofessionalpsychology78.982.8-3.9
mmlupublicrelations68.273.6-5.4
mmlusecuritystudies77.676.7+0.9
mmlusocialsciences83.787.0-3.3
mmlu_sociology88.189.1-1.0
mmlu_stem74.578.3-3.8
mmluusforeign_policy87.090.0-3.0
mmlu_virology56.056.6-0.6
mmluworldreligions87.786.5+1.2
truthfulqa_mc252.653.7-1.1
winogrande68.773.0-4.3

Performance

MetricSculptBaselineChange
Model size16.3 GB16.7 GB-2.2%
Parameters8,752,476,672——
Prefill throughput4,618 tok/s4,566 tok/s+1%
Decode throughput36 tok/s37 tok/s-4%
KV-cache footprint is unchanged — Sculpt only compresses FFN layers, not attention.

Quick Start

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained(
    "dystrio/Qwen3.5-9B-Sculpt-Default",
    torch_dtype="bfloat16",
    device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained("dystrio/Qwen3.5-9B-Sculpt-Default")

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))

All Sculpt Tiers

TierHuggingFaceConfigUse Case
Defaultdystrio/Qwen3.5-9B-Sculpt-Defaultkf=0.95Enterprise — maximum quality preservation
Productiondystrio/Qwen3.5-9B-Sculpt-Productionkf=0.9Enterprise — balanced quality and efficiency
Throughputdystrio/Qwen3.5-9B-Sculpt-Throughputkf=0.88Local/throughput — speed sweet spot (1.25x prefill)
Experimentaldystrio/Qwen3.5-9B-Sculpt-Experimentalkf=0.82Local — maximum compression (1.27x prefill)

Technical Details

  • —Method: Structural FFN pruning with importance-aware block selection + live teacher distillation (alpha=0.5)
  • —Keep fraction: 0.95 (5% of FFN neurons removed)
  • —Repair: 8-stage cosine-LR fine-tuning with best-checkpoint restore
  • —Training data: general_v2 mixture (WikiText, OpenHermes 2.5, MMLU, HellaSwag, GSM8K, OpenOrca)
  • —Hardware: 1x NVIDIA H200 141GB
  • —Output: Standard dense transformer — loads with any HuggingFace-compatible framework

Compatibility

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

Citation

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