Views
No views yet
Qwen/Qwen3.6-27B. Reads a raw layer-42 residual-stream activation and emits four * -bullets describing what the model is about to generate at that position.| field | value |
|---|---|
| checkpoint | online expert-distillation, step 40 |
| whitened FVE (train, fresh acts) | ~0.548 |
| whitened FVE (held-out) | ~0.584 |
| LoRA | rank 64, alpha 16, rsLoRA |
| inject at | marker U+3239 (CJK) token id 158983, inside <concept>...</concept> |
nla_meta.yaml for the actor prompt template + injection token ids.1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3base = AutoModelForCausalLM.from_pretrained('Qwen/Qwen3.6-27B', torch_dtype='bfloat16', device_map='auto')
4model = PeftModel.from_pretrained(base, 'ceselder/olens-online-step40-qwen36-27b')
5# NB: emitting bullets requires injecting the activation at the marker via a forward hook
6# (the adapter alone reads nothing) -- see nla_meta.yaml for template + token ids.