alt.hn

6/12/2026 at 12:24:48 AM

Don't let the LLM speak, just probe it

https://blog.j11y.io/2026-06-10_hidden-state-probes/

by gmays

6/12/2026 at 4:39:57 AM

This is a neat little trick, but I wonder if you could do substantially the same thing by just prompting/LoRA finetuning the model to produce a single-token output ("yes" or "no"). This only requires a single model forward pass, you can use the same KV caching strategy for shared parts of the prompt, and isotonic regression should work just as well to calibrate the output logits. I guess if you use this method and probe on an internal layer you can skip all the remaining layers, which could be a nice inference speedup.

by aesthesia

6/12/2026 at 3:16:27 PM

> you could do substantially the same thing by just prompting/LoRA finetuning the model to produce a single-token output ("yes" or "no")

You could probably achieve this with logit masking. Or equivalently, comparing the "yes" vs "no" logprobs in the final dis-embedded vector.

by wren6991

6/13/2026 at 11:50:33 AM

this looks dangerous.

by cyanydeez

6/12/2026 at 9:59:26 AM

[dead]

by melon_tsui