| ▲ | throw3954 7 hours ago | |||||||
It’s a little more complicated than that. While looped transformers can be unrolled a fixed number of times to save on memory, if loop depth is determined dynamically between tokens, a single transformer can compute any computable function between tokens. To analogize, current transformers run a fixed-length program per step. Any program can be factored into a top-level loop with a fixed-length branching body (an interpreter). Dynamically looped transformers can run any program between tokens. The safety argument for CoT monitoring is that in transformers information about the hidden state has to be communicated through the bottleneck of sampling a single token per forward pass. If not trained adversarially, it’s likely that a reasoning trace contains all the “bottlenecked information” we need to determine intent. But if we can compute arbitrary programs between tokens, the reasoning used is hidden. It also opens the door to simple architectural extensions that would make the safety/monitoring side of things much more difficult. It’s probably fine in practice at these scales though. If we keep each loop turn reasonable non-deep, we can probably recover most of the benefits by decoding “extended” CoTs from the residual stream at each loop turn between tokens. But that’s an area of active development. | ||||||||
| ▲ | libraryofbabel 6 hours ago | parent | next [-] | |||||||
Thanks for clarifying. You're right, I skipped over talking about dynamic looping, since it adds another level of complexity to the discussion, and OpenAI's claim (quoted in TFA) that the compute graph depth of Astra is "within a factor of two of GPT-4" basically denies that they're doing it for more that 1 (or maybe max 2) dynamic loops. And that is equivalent to "stack repeated layers a couple times, but with dynamic off-ramps." The ability to compute any computable function between tokens given an ability to loop an arbitrary number of times is a nice theoretical point, sure, but ultimately if people are still using single digit hard cutoffs on the number of loops, I'm not sure it's all that important. So, I agree it's right to say that arbitrary length dynamic looping could open the door to making monitoring very hard indeed, by extending hidden states further and further. But I would speculate that if it actually worked better than extending the sequence with CoT tokens, we'd already be seeing it in strong open weight models. It's a fairly obvious thing to try. And we're not seeing it, AFAIK. So I do wonder whether it's something we really need to worry about in practice, compared to all the other things we have to worry about. | ||||||||
| ▲ | WhitneyLand 6 hours ago | parent | prev | next [-] | |||||||
By that logic we should also consider the case of cutting the number of layers in half because that would also reduce hidden state between token generation. In your generalized example I think the concern is when the additional evaluation effectively becomes a replacement for CoT, where something like the coconut research could replace it completely. However, I don’t think we’re anywhere close to that with Astra. | ||||||||
| ▲ | program_whiz 6 hours ago | parent | prev | next [-] | |||||||
Actually, removing CoT might make models safer, because we can analyze the entire landscape of their potential outputs, rather than a point-sample (we'll never know how close we were to "kill all humans"). By inspecting intermediate vector spaces, we can actually get certainty bounds on how safely the model is behaving (or even trending). Wrote about it here: https://substack.com/home/post/p-214402969 | ||||||||
| ||||||||
| ▲ | sigbottle 6 hours ago | parent | prev | next [-] | |||||||
Nit: is it any computable function? I thought the requirements were unbounded (in principle) memory and time. (For all intents and purposes given how high dimensional you are and using the "vibes" of computability yes I agree w/ you) | ||||||||
| ▲ | aaroninsf 6 hours ago | parent | prev [-] | |||||||
Probably fine stands a decent chance of being our epitath. | ||||||||