Refresh card: tf6/tf7 filename split + paper link
Browse files
README.md
CHANGED
|
@@ -4,20 +4,38 @@ tags:
|
|
| 4 |
- ace-step
|
| 5 |
- audio
|
| 6 |
- feature-selection
|
| 7 |
-
-
|
| 8 |
- interpretability
|
| 9 |
- music
|
| 10 |
- sae
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# SAE Feature-Selection Scores — `guitar_electronic` (ACE-Step)
|
| 14 |
|
| 15 |
-
Per-concept feature-importance scores for the ACE-Step SAEs at `transformer_blocks.6.cross_attn` and `transformer_blocks.7.cross_attn`. Consumed at inference time by `
|
| 16 |
|
| 17 |
## Files
|
| 18 |
|
| 19 |
-
- `
|
| 20 |
-
- `
|
| 21 |
-
- `best_config.pkl` (optional) — best-performing selection config.
|
| 22 |
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- ace-step
|
| 5 |
- audio
|
| 6 |
- feature-selection
|
| 7 |
+
- guitar-electronic
|
| 8 |
- interpretability
|
| 9 |
- music
|
| 10 |
- sae
|
| 11 |
+
- sparse-autoencoder
|
| 12 |
+
- steering
|
| 13 |
---
|
| 14 |
|
| 15 |
# SAE Feature-Selection Scores — `guitar_electronic` (ACE-Step)
|
| 16 |
|
| 17 |
+
Per-concept feature-importance scores for the ACE-Step SAEs at `transformer_blocks.6.cross_attn` and `transformer_blocks.7.cross_attn`. Consumed at inference time by `SAESteeringController` via `load_features_from_score_cache` (top-k features per diffusion step).
|
| 18 |
|
| 19 |
## Files
|
| 20 |
|
| 21 |
+
- `tf7_scores.pkl` — scores for the tf7 SAE.
|
| 22 |
+
- `tf6_scores.pkl` — scores for the tf6 SAE.
|
|
|
|
| 23 |
|
| 24 |
+
Each pickle is a dict keyed by selection method (`tfidf`, `diff`, `mean_pos`, ...); values are tensors of shape `(num_timesteps, num_features)`.
|
| 25 |
+
|
| 26 |
+
## Paper
|
| 27 |
+
|
| 28 |
+
TADA! Tuning Audio Diffusion Models through Activation Steering — [https://huggingface.co/papers/2602.11910](https://huggingface.co/papers/2602.11910)
|
| 29 |
+
|
| 30 |
+
## Quickstart
|
| 31 |
+
|
| 32 |
+
```python
|
| 33 |
+
from src.steering.methods.sae import load_features_from_score_cache
|
| 34 |
+
|
| 35 |
+
top20_tf7 = load_features_from_score_cache(
|
| 36 |
+
"lukasz-staniszewski/ace-step-sae-scores-guitar-electronic", score_filename="tf7_scores.pkl", top_k=20,
|
| 37 |
+
)
|
| 38 |
+
top20_tf6 = load_features_from_score_cache(
|
| 39 |
+
"lukasz-staniszewski/ace-step-sae-scores-guitar-electronic", score_filename="tf6_scores.pkl", top_k=20,
|
| 40 |
+
)
|
| 41 |
+
```
|