Comment by DennisP
19 hours ago
Rumor has it that OpenAI is already going that way. There's a technique of repeatedly looping through several neural layers that has the same effect as chain-of-thought, but without the efficiency loss of translating out to human-readable tokens, and some of OpenAI's statements about their latest model seem to fit well with that.
No, layer looping increases effective depth, but it still has to go through decode. So it's more like they increased number of layers from 100 to 200 without increasing number of parameters.
"Latent reasoning" is rather trivial - you can just replace unembed-embed step with a MLP. But labs don't do that largely because they want to read the output of unembed.
There was a paper posted in some thread here a while ago. Basically instead text based llm you turn the text into an image and use that as input and have the model work with the resulting matrices. This ended up as you'd guess, faster/more efficient/generally better in all their benchmarks compared to text string based llm.
It's a totally different technique though than what parent is referring to. The one you are referring to is used to take advantage of image and video compression algorithms
what would be the benefit of turning it into an image rather than some arbitrary representation?
I'm not sure exactly. Maybe its just easier to work with matrix data. That's all an image is anyhow. The imaging is just to convert the text to some matrix that's tied to the text structure.
seems like a bad UX decision, unless it is somehow summarized at the end or something
it doesn't seem necessary to read a full CoT exchange. rather a final graph of why a decision was made would be ideal for my usage.
It's already impossible for end users to read the thinking output of OpenAI's models.