File size: 1,573 Bytes
f2797a5 ff3d0fb f2797a5 ff3d0fb f2797a5 ff3d0fb f2797a5 ff3d0fb f2797a5 ff3d0fb f2797a5 ff3d0fb f2797a5 ff3d0fb f2797a5 ff3d0fb f2797a5 ff3d0fb f2797a5 ff3d0fb |
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 |
---
license: apache-2.0
tags:
- pruned
- python
- optimized
- wanda
base_model: Qwen/Qwen3-1.7B
pipeline_tag: text-generation
---
# Qwen3-1.7B-python-aggressive
> π― **PYTHON-optimized** | π¦ **Aggressive** pruning | β‘ **1% weights pruned**
This model is a **aggressively pruned** version of [Qwen/Qwen3-1.7B](https://huggingface.co/Qwen/Qwen3-1.7B).
## Performance Comparison
| Category | Original | Pruned | Change |
|----------|----------|--------|--------|
| **Python** | 0.0% | 0.0% β | β |
| Html | 0.0% | 0.0% | β |
| Trivia | 57.1% | 57.1% | β |
| Math | 66.7% | 66.7% | β |
| Reasoning | 20.0% | 20.0% | β |
| Medical | 50.0% | 50.0% | β |
| Linux | 20.0% | 20.0% | β |
| Writing | 16.7% | 0.0% | β 16.7% |
**Average**: 28.8% β 26.7% (-2.1%)

## Quick Start
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("CompactAI/Qwen3-1.7B-python-aggressive")
tokenizer = AutoTokenizer.from_pretrained("CompactAI/Qwen3-1.7B-python-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))
```
## Technical Details
| Property | Value |
|----------|-------|
| Base Model | [Qwen/Qwen3-1.7B](https://huggingface.co/Qwen/Qwen3-1.7B) |
| Specialization | Python |
| Prune Mode | Aggressive |
| Weight Reduction | 1% weights pruned |
## License
This model inherits the license from the base model.
|