Views
No views yet
Qwen/Qwen3-8B-Base stays completely frozen; FLAS adds a small concept-conditioned flow module that intervenes on the residual stream at one layer. Nothing in the base weights changes.Qwen/Qwen3-8B-Base, trained with FLAS (Flow-based Activation Steering). Where prior work like Golden Gate Claude had to lock in a single behavior in advance, FLAS learns a single concept-conditioned velocity field \(v_\theta(h, t, c)\). At inference you hand it any natural-language concept \(c\) and it produces the right intervention on the fly. The same checkpoint handles thousands of unseen concepts.flas-ai/flas-concept-46kconfig.json).Qwen/Qwen3-8B-Base is a base (non-instruct) model with no chat template, so this checkpoint was trained and must be used with a minimal Alpaca-style wrapper:### Instruction:
{input}
### Response:
{output}config.json sets "prompt_format": "alpaca"; the FLAS loader reads it back and applies it automatically at generation time.| File | Description |
|---|---|
flas-qwen3-8b-base.safetensors | Flow-function weights (210 M params, ~421 MB, bf16). |
config.json | Architecture config consumed by the FLAS loader (model_id, layer, num_blocks, n_steps, prompt_format, …). |
Base-model license. Use of this steering checkpoint requires the base modelQwen/Qwen3-8B-Base, which is distributed under the Apache-2.0. The FLAS flow weights in this repo are released under Apache-2.0.
1@article{flas2026,
2 title={Beyond Steering Vector: Flow-based Activation Steering for Inference-Time Intervention},
3 author={Zehao Jin and Ruixuan Deng and Junran Wang and Xinjie Shen and Chao Zhang},
4 year={2026},
5 eprint={2605.05892},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2605.05892},
9}