File size: 2,341 Bytes
097b007
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
tags:
- pruned
- html
- optimized
- wanda
- activation-pruning
base_model: Qwen/Qwen3-4B
pipeline_tag: text-generation
---

# Qwen3-4B-html-medium

> 🎯 **HTML-optimized** | πŸ“¦ **Medium** pruning | ⚑ **35% weights pruned**

This model is a **moderately pruned** version of [Qwen/Qwen3-4B](https://huggingface.co/Qwen/Qwen3-4B), specialized for **HTML** tasks using activation-aware weight pruning (Wanda-style).

## ✨ Key Features

- **Specialization**: Optimized for Html tasks
- **Pruning Method**: Wanda-style (|W| Γ— |activation|) importance scoring
- **Size Reduction**: 35% weights pruned
- **Use Case**: Balanced trade-off between size and accuracy

## πŸ“Š Performance Comparison

| Category | Original | Pruned | Change |
|----------|----------|--------|--------|
| Python | 20.0% | 60.0% | ↑ 40.0% |
| **Html** | 0.0% | 0.0% ⭐ | β†’ |
| Trivia | 100.0% | 100.0% | β†’ |
| Math | 100.0% | 100.0% | β†’ |
| Reasoning | N/A | N/A |  |
| Medical | 100.0% | 100.0% | β†’ |
| Linux | 100.0% | 100.0% | β†’ |
| Writing | 93.3% | 80.0% | ↓ 13.3% |

**Average**: 73.3% β†’ 77.1% (+3.8%)



![Comparison Graph](comparison_graph.png)

## πŸš€ Quick Start

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("CompactAI/Qwen3-4B-html-medium")
tokenizer = AutoTokenizer.from_pretrained("CompactAI/Qwen3-4B-html-medium")

# Example usage
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-4B](https://huggingface.co/Qwen/Qwen3-4B) |
| Specialization | Html |
| Prune Mode | Medium |
| Pruning Method | Activation-based weight pruning (Wanda) |
| Weight Reduction | 35% weights pruned |

## πŸ”— Related Models

This model is part of the **Qwen3-4B** pruned model collection. Other variants:
- Extra-light (minimal pruning)
- Light
- Medium-light  
- Medium
- Medium-heavy
- Heavy
- Extra-heavy (maximum compression)

## πŸ“œ License

This model inherits the license from the base model [Qwen/Qwen3-4B](https://huggingface.co/Qwen/Qwen3-4B).

---
*Generated by ZANNPS [Zeto Automatic Neural Network Pruning System]*