Update README.md
Browse files
README.md
CHANGED
|
@@ -4,11 +4,39 @@ emoji: 🔥
|
|
| 4 |
colorFrom: indigo
|
| 5 |
colorTo: gray
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
python_version: '3.12'
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
| 11 |
license: apache-2.0
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
colorFrom: indigo
|
| 5 |
colorTo: gray
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 5.49.1
|
| 8 |
python_version: '3.12'
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
| 11 |
license: apache-2.0
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# QwenScope Feature Explorer
|
| 15 |
+
|
| 16 |
+
Interactive Sparse Autoencoder (SAE) feature exploration and steering demo for Qwen3.5-2B, powered by Hugging Face ZeroGPU.
|
| 17 |
+
|
| 18 |
+
## Features
|
| 19 |
+
|
| 20 |
+
- **Feature Comparison**: Compare SAE feature activations between two text examples across all transformer layers.
|
| 21 |
+
- **Feature Steering**: Inject SAE decoder vectors into the residual stream to steer model generation behavior.
|
| 22 |
+
|
| 23 |
+
## Model Info
|
| 24 |
+
|
| 25 |
+
| Property | Value |
|
| 26 |
+
|---|---|
|
| 27 |
+
| Base model | [Qwen/Qwen3.5-2B](https://huggingface.co/Qwen/Qwen3.5-2B) |
|
| 28 |
+
| SAE width | 32,768 |
|
| 29 |
+
| Top-K | 100 |
|
| 30 |
+
| Layers | 0 – 23 (24 total) |
|
| 31 |
+
| Hidden size | 2,048 |
|
| 32 |
+
|
| 33 |
+
## Citation
|
| 34 |
+
|
| 35 |
+
```bibtex
|
| 36 |
+
@misc{qwenscope,
|
| 37 |
+
title = {{Qwen-Scope}: Turning Sparse Features into Development Tools for Large Language Models},
|
| 38 |
+
author = {{Qwen Team}},
|
| 39 |
+
month = {April},
|
| 40 |
+
year = {2026}
|
| 41 |
+
}
|
| 42 |
+
```
|