CompactAI's picture
Upload folder using huggingface_hub
3bdc1d4 verified
metadata
license: apache-2.0
tags:
  - pruned
  - python
  - optimized
  - wanda
  - activation-pruning
base_model: Qwen/Qwen2.5-3B-Instruct
pipeline_tag: text-generation

Qwen2.5-3B-Instruct-python-heavy

🎯 PYTHON-optimized | πŸ“¦ Heavy pruning | ⚑ 30% weights pruned

This model is a aggressively pruned version of Qwen/Qwen2.5-3B-Instruct, specialized for PYTHON tasks using activation-aware weight pruning (Wanda-style).

✨ Key Features

  • Specialization: Optimized for Python tasks
  • Pruning Method: Wanda-style (|W| Γ— |activation|) importance scoring
  • Size Reduction: 30% weights pruned
  • Use Case: Maximum compression while maintaining usability

πŸ“Š Performance Comparison

Category Original Pruned Change
Python 100.0% 100.0% ⭐ β†’
Html 6.7% 0.0% ↓ 6.7%
Trivia 100.0% 66.7% ↓ 33.3%
Math 60.0% 60.0% β†’
Reasoning N/A N/A
Medical 100.0% 80.0% ↓ 20.0%
Linux 100.0% 100.0% β†’
Writing 73.3% 73.3% β†’

Average: 77.1% β†’ 68.6% (-8.6%)

Python Retention: 100.0% of original performance

Comparison Graph

πŸš€ Quick Start

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("CompactAI/Qwen2.5-3B-Instruct-python-heavy")
tokenizer = AutoTokenizer.from_pretrained("CompactAI/Qwen2.5-3B-Instruct-python-heavy")

# 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/Qwen2.5-3B-Instruct
Specialization Python
Prune Mode Heavy
Pruning Method Activation-based weight pruning (Wanda)
Weight Reduction 30% weights pruned

πŸ”— Related Models

This model is part of the Qwen2.5-3B-Instruct 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/Qwen2.5-3B-Instruct.


Generated by ZANNPS [Zeto Automatic Neural Network Pruning System]