Qwen3-0.6B
Collection
Collection of pruned models based on Qwen3-0.6B
β’
16 items
β’
Updated
π― MATH-optimized | π¦ Aggressive pruning | β‘ 35% weights pruned
This model is a aggressively pruned version of Qwen/Qwen3-0.6B.
| Category | Original | Pruned | Change |
|---|---|---|---|
| Python | 0.0% | 0.0% | β |
| Html | 0.0% | 0.0% | β |
| Trivia | 28.6% | 7.1% | β 21.4% |
| Math | 33.3% | 80.0% β | β 46.7% |
| Reasoning | 20.0% | 20.0% | β |
| Medical | 66.7% | 16.7% | β 50.0% |
| Linux | 40.0% | 40.0% | β |
| Writing | 16.7% | 0.0% | β 16.7% |
Average: 25.7% β 20.5% (-5.2%)
Math Retention: 240.0%
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("CompactAI/Qwen3-0.6B-math-aggressive")
tokenizer = AutoTokenizer.from_pretrained("CompactAI/Qwen3-0.6B-math-aggressive")
inputs = tokenizer("Your prompt here", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
| Property | Value |
|---|---|
| Base Model | Qwen/Qwen3-0.6B |
| Specialization | Math |
| Prune Mode | Aggressive |
| Weight Reduction | 35% weights pruned |
This model inherits the license from the base model.