File size: 2,024 Bytes
c886932 616e5cb c886932 616e5cb c886932 616e5cb c886932 616e5cb c886932 |
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 |
---
license: apache-2.0
tags:
- pruned
- python
- optimized
- wanda
base_model: LiquidAI/LFM2.5-1.2B-Instruct
pipeline_tag: text-generation
---
# LFM2.5-1.2B-Instruct-python-safe
> **PYTHON-optimized** | **Safe** pruning | **30% weights pruned**
This model is a **conservatively pruned** version of [LiquidAI/LFM2.5-1.2B-Instruct](https://huggingface.co/LiquidAI/LFM2.5-1.2B-Instruct).
> **Pruning Alert:** The benchmarks show virtually NO quality drop! This isn't a bug -- it is a feature. The Wanda pruning algorithm is so effective at identifying unimportant weights that it can remove a large percentage of parameters without affecting performance. Think of it like pruning dead leaves from a tree -- the tree does not miss them because they were not doing anything anyway!
## Performance Comparison
| Category | Original | Pruned | Change |
|----------|----------|--------|--------|
| **Python** | 0.0% | 0.0% ⭐ | → |
| Html | 0.0% | 0.0% | → |
| Trivia | 90.0% | 90.0% | → |
| Math | 55.0% | 55.0% | → |
| Reasoning | 40.0% | 40.0% | → |
| Medical | 80.0% | 80.0% | → |
| Linux | 45.0% | 45.0% | → |
| Writing | 20.0% | 20.0% | → |
**Average**: 41.2% -> 41.2% (+0.0%)

## Quick Start
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("CompactAI/LFM2.5-1.2B-Instruct-python-safe")
tokenizer = AutoTokenizer.from_pretrained("CompactAI/LFM2.5-1.2B-Instruct-python-safe")
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 | [LiquidAI/LFM2.5-1.2B-Instruct](https://huggingface.co/LiquidAI/LFM2.5-1.2B-Instruct) |
| Specialization | Python |
| Prune Mode | Safe |
| Weight Reduction | 30% weights pruned |
## License
This model inherits the license from the base model.
|