Welcome back to another episode of Decoded.
Today I'm back with YC visiting partner, Francois Chaubard, to talk about one of the most interesting recent trends in AI research recursion.
Specifically, we're going to talk about how we can improve a model's reasoning performance by using recursion at inference time, rather than by just making the model bigger and bigger.
There were two papers that made the power of this approach really clear in 2025.
One on hierarchical reasoning models, or HRM, and another on tiny recursive models, TRM.
Francois, thanks for joining us.
Can you tell us a little bit about these two models and what was so interesting about them?
Sure.
I guess to set up a little bit of a foundation.
You already did an amazing lecture on RNNs and LLMs in one of the previous videos, so I won't overdo it.
But just to give the cliff notes.
And RNN is just a model that you recursively call again and again, and again on itself.
And we were very much in the belief that this was required to get to AGI.
Peak RNN use was probably until 2016.
With Alex Graves' keynote which is just fantastic and all his adaptive compute time work.
So this is about 10 years ago, people were working on these models.
This was in the era of LSTMs and LSTMs with attention.
Yeah, and depending which professors you talked to before attention was invented.
Yes, yes, totally, yeah.
And I think what really was the limiting step on RNNs in general was this thing called back prop through time where you have to roll out the model.
And then to update the weights, you need to approximate the gradient.
And you step back, back, back, and you keep rolling out.
And as the model gets bigger and bigger and as you roll out for more and more steps, then you have all these accumulation of errors and the gradient gets noisier and noisier and then it just kind of stops to work.
So you have these like vanishing or exploding gradient problems, and it's because if you have an input with 20 steps, you're like multiplying these matrices 20 times and that causes And we're talking about doing context length of like a million or like a billion.
And so it's not even just 20, it's like a billion.
And even worse, you have to retain the activations at every single step.
And so if this were happening in your brain, you would need like a million copies of your brain at every single activation so that I can back prop through it.
There's tricks around this that you can do, and you can do a gradient, checkpointing and things like that to reduce that issue.
But then you're just like trading off memory for wall clock time and compute.
Right.
So now, if you contrast that with LLMs the ones that people are widely using these while at face value they appear to be similar, at training time they're doing basically this one-shot feed-forward process for every input.
The LLM, the transformer block, can take all of the inputs in parallel.
It's not actually iteratively going over them one at a time at train time, so you don't have this Needing to store tons of activations problem or this giant vanishing gradients problem with them.
Yeah, exactly Like it's actually unlike all happening in time in one shot magically, and that was like the trill or lower triangle trick, that kind of happens, this causal mask that occurs and so you actually do all all time steps in one shot and you forward, pass a feed forward model on all time steps and in one shot and you backwards in one shot.
And it's amazing for train time in terms of a wall clock.
It requires a lot of flops, and it still requires a lot of the memory.
You still need it there, but you don't have the vanishing gradient issue.
And what you actually paid for that you have to give up is this latent reasoning thing and this compression in the time direction.
There is no compression in LLMs.
Every single decode that I do, I still have to retain the entire Shakespeare novel, just to decode a little bit.
And in RNNs, you don't have to do that.
It's all compressed in this hidden state that you kind of roll out.
Okay, so let's talk about that in a little bit more detail.
You refer to this... inherent reasoning ability.
You know, many people think about LLMs as doing reasoning, and we're going to talk about that a little bit later.
But help me understand where you see the biggest limitations in LLMs reasoning ability is in terms of what the model does in an actual forward pass.
Yeah.
And so I guess we go back to chat GPT-2.
GPT-2 was this landmark uh uh, architecture and paper that um basically, it was just get next token, next token, next token.
And it kind of worked.
And like, we just watched Val loss go down.
Perplexity goes down.
Like the model just is more performant.
It looks better, starts to make some Shakespeare that actually sounds somewhat plausible.
Right.
And then we have to get these things to reason and to actually solve some really hard problems.
And.
And I've done extensive experiments on this.
But if you take, for example, sort.
You have infinite amounts of unsorted lists, and you give it sorted lists.
You keep feeding it to the model.
It should work, right?
It's actually impossible for the model to map from unsorted list to sorted list.
In a one-shot, basically.
In a one-shot basis.
It's like, literally we know a theoretical lower bound, that for a comparison sort you can't do better than n log, n steps.
And if I have a list that's 31 characters or elements long and my transformer is 30, I run out of steps to do comparisons.
It's not possible for me to do all the steps that is needed to be done.
In HRM and TRM, they use Sudoku as an incompressible problem.
Similarly, and so are mazes.
Those are incompressible problems.
Rolling sum, incompressible problem.
So when you mentioned the sorting algorithm, when I think back to my algorithms class from college, the one way you could get faster than n log n in a sorting algorithm is if you had some access to an external memory cache.
If you had some tape you could write to, then you can actually do faster than n log n by basically selectively putting things onto this memory.
And I suspect that's a key limitation of these LLMs, in that, because there's no external memory tape inbuilt into the model, you lose certain performance possibilities in terms of how fast you can go.
That's right.
And so I guess like radix sort would be like the most common one.
Depending on the number of buckets that you have, you can kind of get from n log n to order n.
You can't get less than N. You have to touch all the elements.
Sorry, you have to do that.
And if you run out of layers and transformer layers in your neural network, then you ran out of chances to do that.
So this is just like going back to like Alan Turing now and like a Turing machine, right?
So what's the analogy there exactly that we should think about in terms of LLMs?
I guess not quite satisfying how you think about a Turing machine.
Yeah, so let's just talk about chat GPT-2.
GPT-2, the original, no bells and whistles.
It's just a feed forward model.
And so it's just forward passing one step.
Taking an input, creating a bunch of outputs.
In the Sudoku case, if I have 50 different and it's provable that I can only do one, given this information and I have this many layers, then that's all I can do.
And the cheat is the chain of thought.
And so it's completely true that at test time turn complete and you can simulate all turn computable functions at test time.
But how do you get it to learn it?
You need to train it.
That's where, unless you're training it on human labeled traces, for which there's a lot of problems like the millennial prize problem we don't have the trace for it.
So we'd love to have the trace for it, just as it exists.
Totally, makes sense.
Okay, so with that context in mind, now let's talk about these two papers, because I think that sets up a lot of the contrast we're going to draw between these papers and the models that people are maybe more used to.
So let's talk about HRMs first.
Walk me through a little bit about how this model works, and some of the intuition behind it.
Sure.
So this is directly in the lineage of RNNs.
There's not that much novel from the RNN standpoint, at least in my opinion.
They do have this idea of, from a inspired by the brain, where there's different parts of the brain that operate on different frequencies.
There's some that operate at a really high frequency, which is on the low level of the hierarchy.
Some that operate in a really low frequency, which is the higher level of the hierarchy.
And the interplay between those things is really interesting.
So this is literally in the human brain.
There's some bio-inspiration here, which is that you have different waves running at different frequencies in different parts of the brain, or something like that.
Okay, cool.
And I guess that's one interpretation of it, of the way that they're talking about classifying these hierarchies of frequencies.
And the most interesting part, at least for me, is the way that they train the neural network.
You take in some X, some input, whether it's an incomplete Sudoku puzzle, a maze or an art prize.
Challenge Um you uh do TL steps with the L the, the lower level uh module.
Then you do go to go to H, you do that um TH times and then you have uh ends up outer refinement steps.
Yeah.
So you basically are like running through the input with a given matrix, with a given transformation, repeatedly on it.
And you're doing that through two levels of refinement and then basically running that process several times.
Yes.
So there's exactly three levels of recursion occurring here.
There's the low level, There's the high level, and then there's the outer refinement steps.
And we're calling it recursion because it's the same weights that are being applied repeatedly.
We're not changing the weights in between these steps.
Exactly right.
You get to recurse on the L net TL times.
You recurse on the TH and the TL, this looped recursion, TH times.
And then you do NSUP.
You do this whole outer refinement step NSUP times.
Cool.
And so what's the basic intuition for why that works?
Like, why does that produce an effective paper result?
And what even were the results that this paper showed?
Yeah.
And so, I mean, this got state of the art on ArcPrize 1 and 2.
This was only a 27 million parameter model that was only trained on...
ArcPrize.
So it's like a thousand inputs or something like that, like puzzles, basically.
Literally a thousand tasks, which is extremely small.
There is no pre-training at all.
This starts from, like, literally tabula rasa weights.
And it can outperform at that time if we go back.
You know we had O3, if you remember back, way back when.
And O3 gets zero, literally zero, and this got like something like 70 on our prize one at least at the time which was just a huge breakthrough.
And so the way you can think this is like variable scoping.
And so if I have three nested functions, I guess the lowest level function has scoped variables, which they'll call ZL, which is the carry that, and it's the zero.
A latent variable.
Latent variable.
Traditional RNN literature, they would call this the hidden state, the low level hidden state.
And I get to recurse, recurse, recurse.
And then I pass back that ZL back to the outer scoped function, the higher level one.
I let that one do one iter.
It goes back and calls the lower level again.
It does this whole thing in a third outer loop, which is called the outer refinement step.
But when you describe it like that, it seems like it would have the same back prop through time problem that you would have at RRNs.
And I think they came up with a clever trick to basically get around that.
So what was that trick that they figured out?
And this is really the crux of the paper that differentiates it, in my opinion, in the literature is they instead of doing what Alex Graves did in all of his papers, from neural turn machines to adaptive compute time, to differential neural computers, is he always back, propped through all of the recursion steps.
And he was limited by back propped through time.
So you could only make the model so big.
You have all these issues, vanishing gradients, et cetera, et cetera.
And what they do is they kind of have this DEQ method of doing fixed point iteration.
So it's like deep equilibrium models.
Yeah, deep equilibrium learning where, if I take a batch and this is completely counterintuitive as a computer vision person, because you'd never do this, but it actually does make sense and I'll explain why
If I take a batch of ImageNet or CIFAR10 and I forward, pass through the model and I get some loss and I back prop and I update the weights, I would go get a different batch for the next one.
But what they do instead is they actually do that 16 times.
And as you do that, you actually can see the change in your residuals get less and less and less.
And why it actually makes sense is because when, In the RNN case, the ZL and the ZH, which are the carry, the task carry start out at the hidden states, start out at zeros.
Those are zeros.
Then we go through this whole loopy recursion, at least the two loops, the two lower loops, the TL and TH steps.
And then I back prop just through the two modules. just once, and I don't recurse all the way back.
I do a stop grad.
I stop right there.
And then there's a huge residual, and then I don't reset ZL and ZH.
I do it again at a different point in the carry or hidden variable space.
And so one can actually look at it as like a different batch every time, even though it's the same exact.
Yeah, like the way I kind of think about it is like the 16 or whatever that you're recursing over it's like constructing a mini batch, not from different inputs but from, like different memory states, basically.
It's like across this hidden or carry memory access, basically.
And that math holds, and it works.
It follows DEQ directly in the event that the delta in ZL and the delta in ZH go to zero, which it actually doesn't do.
And so we'll get to TRM.
But Alexia basically shows that it's just not the case and you can't actually apply this math why it's working.
That's not sufficient support for why it's working.
We actually don't know why it's really working.
And she figures out that you actually can back prop through all the way to the deep recursion which we're gonna get into TRM in a second.
And that actually improves performance much, much more.
Interesting.
Okay, so before we get into TRM yeah, on this paper, I think there's a bunch of different ways people have looked at this, in terms of how they came up with it and then why this may or may not be working.
One, it's a sort of bio-plausibility argument.
As you know, I'm usually not super keen on these.
Machine learning tends to have a long history of people starting with bio-plausible arguments and then realizing that there's some variant of them that seems highly bio-implausible that actually works better.
I think you have an example.
Yeah, I mean the classic.
The first deep learning paper that started this whole craziness is AlexNet.
And in AlexNet there's actually this funny little thing called local receptive data activation or depression or something like that where like, once this activation fires, then I have this, like you know, a factory region or something like that.
It actually doesn't work at all.
And like it didn't work and you didn't need that.
And then VGG came out and said, get rid of all that.
Just go deeper and three by three comp and actually just like outperforms dramatically.
And so like this is like Maybe you need to do it to get accepted into neuroscience.
Yeah, sure, totally.
You're definitely the expert here, but what do you consider to be bio-plausible and what's not?
Well, I think that a lot of machine learning literature has overlapped a lot with people working in neuroscience.
It is very natural for us to ask questions about how does our brain work?
Because our brain is like an incredible instrument that does a ton of computing obviously, and does it in a very shockingly efficient manner.
It seems like
And so a lot of machine learning resources for a long time sought analog from how we think to understand our brain to work and try to encode that in various machine learning systems.
So, from the very basic concept of what a neural network is, it's called a neural network because we think it's some basic model for what a neuron is, how certain activation functions work, are meant to be inspired by certain biological premises.
Do you think that's a misnomer?
The thing about them is that often we use bioplausibility to inspire us to come up with ideas.
But we end up veering away from the bioplausible to something adjacent to them that is likely bioimplausible, but that seems to work better.
And I think it runs better on a GPU.
Exactly.
It runs better on a GPU.
It's more efficient in some capacity that is relevant to how we actually encode it in a computational system.
So I find thinking about bioplausibility fun and interesting, and it's definitely a great way to inspire us to think about new things.
But I tend to not be bounded by bio plausibility when I think about what machine learning systems we should prioritize working on or think are particularly exciting other than as an interesting scientific launching point for a deeper exploration.
I think the version of this that I find more compelling is actually that original discussion we were having around automata theory, basically.
And honestly just actually like fundamental data structures and algorithms theory, which is that if you're running a complex algorithm, having access to sort of a memory cache is actually very useful for being able to run that algorithm efficiently.
And I kind of think of this set of hidden states or carry as akin to a Turing machine tape or akin to the radix sort memory bank, where you can basically train a model to use this memory cache in an intelligent way in a single forward pass so that you can get a more efficient time operation that would otherwise require some sort of more complicated reasoning.
Yeah, I think that a point I wanted to make earlier is that, like we did, this COT stuff and this tool, use thing as ways to get beyond the limitations of GPT-2.
And so the way that we get you can actually I've done this experiment you can actually, if you give me infinite amounts of unsorted lists and sorted lists, if I can do chain of thought and I can do every single step and teach it to do every single step, then I can actually get it to do sort and become a Turing machine.
At test time.
Similarly an even cheaper one that is much easier to do, is you teach it and you say hey, there's this Python function called sort.
Just call the function.
Just call the function.
That's the easiest thing to do and you don't need Backprop at all.
So, those are the two hacks.
Now, well, Francois, this is solved.
Like, we're done, right?
No, because I needed to know what sort was.
What happens if we didn't know what merge sort is?
The chain of thought is not going to inherently discover sorting from first principles.
It's finding it from our historical knowledge of everything it's trained on.
The demos had this whole thing about the ultimate test is the Einstein test.
Go back to 1911 and then have it rebuild all the physics up until now.
Similarly, let's just pretend that we only had bubble sort.
We knew no other sort system.
If you chain of thought it on all the bubble sort input and output, it will only do bubble sort.
In fact, it won't even do bubble sort that well.
So this is the best situation.
And then the tool use, of course, it can only know bubble sort.
I want to get to merge sort.
How do I discover merge sort?
And I think the interesting thing just emphasize here because it may not have been extremely clear is there already exists some type of recursion that people are used to in LLMs, which is chain of thought we mentioned earlier.
But that is a recursion that's happening in the token space of the model's outputs, not inherent to the model itself.
That's sort of.
The fundamental limitation is that the model can only do a feed forward one shot output.
And then we basically just have this hack that if you keep letting it output things, then it can read its outputs and do somewhat intelligent seeming things with it.
But it seems to sort of be upper bounded by the data that we feed it, that the labs are very hungrily buying right now and not this sort of like inherent underlying recursive reasoning.
Yeah, so in both cases, both hacks to solve this in COT and tool use, you're bounded by the bounds of human knowledge.
In the event it's outside the set of human knowledge, then you're kind of SOL.
And so that's one.
You make a great point about discrete versus latent space.
Reasoning in a discrete can only output.
The carry in the case of LLNs has to be snapped back to some discrete token space.
And in the case of RNNs in general, they remain in this continuous latent space, which is much higher dimensional.
If you give me like a tape that's this long and you cut it up into 10 buckets like versus all the possible values.
Right, exactly.
It's much more expressive to be in continuous space.
But we can't train it that way, because we actually, you know, because you're inhibited by backdrop, through time largely.
And this is why this paper is so exciting.
Okay, so before we then go over to the TRM paper, let's just summarize here.
What matters most from the HRM paper that we should take away before we transition and contrast it with the TRM paper.
Yeah, I think that the number one piece to take away is this outer refinement loop.
The outer refinement loop scales. and there's a great breakdown.
Basically the Sapien authors, which huge kudos for this paper because there's so many innovations in this paper.
Didn't really do like a scaling ablations on every single one of the inputs, but this guy, Constantine at François Chalet's company India, actually did.
And it's this amazing breakdown that he posted on YouTube that you can go check out.
But basically the main takeaway is that the outer refinement loops is the main beneficiary, is the main reason why these things work so well, which Alexia basically takes the she found, I think, in parallel and scales up and shows that you can get rid of a lot of all this other stuff.
Okay.
So, like a lot of machine learning, the follow-on paper is basically delete 75 of the first paper, as we've often done in videos here, and keep the magic basically.
Yeah.
So, okay, so what's the magic then?
Like, what's the part that actually matters in terms of what stays in the TRM paper?
And let's now contrast the core architectural differences between these two papers.
Yeah.
So I think that I guess, if I break it down into two major things, is this outer refinement loop thing is really great and works really well.
And that this like truncated back prop through time, which is back prop through time, except I truncate at some time.
Some earlier point.
Earlier point called T, T back. t equals one is actually completely sufficient.
And so truncated backward up to time t equals one, completely sufficient.
And that's very counterintuitive.
Which is what HRM found.
Which HRM found and TRM does a little bit further.
Rather than going through just one call to the H net and the L net, it actually goes through one full recursion loop.
So if I do it 16 times, I just go back through one time.
And that is kind of sufficient.
And if you do it with this like fixed point iteration thing, pseudo fixed point iteration thing, where you keep hitting it with gradient at every single step,
It, like, weirdly works.
And this batch size across the carry space, like, actually works.
So that part is also kept between these two models.
It seemed like another thing that changed was having this sort of double layer of, like you know, higher order thinking and lower order thinking.
It seems like it collapsed that down into just a single one.
What's the intuition there?
And how does that actually work in the TRM paper?
Yeah, so it's interesting.
She actually ablates having two separate networks versus just having one.
I guess the more important space is.
The variable.
Scope is that you should have low level features and high level features, but the same network.
And so the best performance model.
The same network can extract both, basically.
Yeah, you weight share between the L-net and the H-net, and it's just called net.
And you do just one transformer layer versus the four, like they do in Sapient, and just whittle it down to one and do more recursion.
But you keep ZL and ZH to be distinct and separate.
And she calls it x and y, which I found very confusing.
And z, x, y, z, which is very confusing.
And it's just like z, h, and z, l is just cleaner.
So if you read the paper, y is actually like latent space.
It's like z, basically.
And it is not a label.
Yeah, OK.
Which really threw me through a loop.
But anyway, so we'll go through some code here.
And I'll walk you through it.
So I replaced all of her nomenclature and use the sapient notation, which is much cleaner and more straightforward, to me at least.
Okay, cool.
And now, before we dive into the code for a sec, in terms of how these TRMs actually work, it's pretty interesting because this recursion advantage now gives you a bunch of advantages over transformers where, rather than having you know, 500 or a thousand or a million or whatever transformer layers and having tons and tons of parameters, you get compute depth basically without this parameter depth.
And the optimization process looks like more of like an iterative kind of like expectation maximization algorithm.
You want to talk about how that worked in the TRM paper?
Because I thought that was also pretty interesting.
So both of them kind of had the same kind of EME feeling thing where, like we update ZL condition upon ZL, the input X and ZH, the last ZH ZH, t minus one, let's say
And then we keep updating ZL, ZL, ZL, ZL, ZL, and we keep updating it.
And then we go holding, we update ZH, condition upon ZL, and actually it's just ZL, it's not even X.
And then we just update zh.
And the way to think about zl and zh is.
Zl is like your local scoped variables that are just being overwritten and updating updating, updating.
And then zh, and Alexia makes this point, that is a candidate answer a proposed latent answer that is just an embedding space away uh a one uh mlp look up away from the true answer so you're kind of like yamming just to like zoom out a little bit you're kind of maximizing the probability of the correct information stored in your memory, conditioned on a given output, and maximizing the right output conditioned on the information stored in your memory, quote unquote, in parallel.
And that optimization algorithm leads to you ultimately learning a recursive method that stores the right information to this local memory basically, and then outputs the right thing.
If we actually think of Sudoku, it's actually a really natural way to think about what's actually happening on the hood, where Sudoku is an incomplete puzzle.
You can't guess every cell at any one time.
Actually it's designed where you can only guess one or two cells based on the available information.
So it's not as an incompressible problem.
You actually can't do it, unless you're just randomly guessing and guessing and guessing a very high combinatorial space.
And so what the ZL is doing is some type of let me try this, try that, do some computation, think about little things, and then it proposes, and then we go to condition upon something that it may have found.
It sends it to ZH, ZH fills it in, and now we have a little bit more of a filled in Sudoku puzzle.
And the training process is training the algorithm to know to do that.
It's maximizing that.
It's like, oh, this strategy for what you save tends to lead to correct outputs.
Without chain of thought.
Without chain of thought, exactly.
That's the most important part.
If we had Sudoku and we know how to solve Sudoku, because we were just dumb homo sapiens that didn't know how to solve Sudoku.
It would just have solved it.
And that's why it's cool, because it actually is able to discover things without being teacher forced via a chain of thought.
Interesting, yeah.
Should we look at some code?
Let's do it.
Okay, let's dive in.
And I would love to see what these papers or bottles look like just distilled down to their core essence.
I know there's lots of details on how you train them, but kind of the core training algorithm.
And it'd be great to contrast the two methods.
Yeah.
So, I mean, they're remarkably similar.
And so learning one is learning the other.
But basically, you start out with some ZH and ZL that are just zeros.
You have some input embedding space to go from X raw to X, which is the maze state or whatever it is initial maze state.
And then with no grad, you don't pass any gradients back through this.
So this is the trick, basically, to not back prop through time.
Here are two of the three recursion levels.
They do this just for simplicity.
But I hit ZL, T low times and then once for modulo T low, then I hit the ZH, and I do it again and again.
And like you said, I'm updating ZL condition upon ZH and X. And then I update ZH condition upon ZL.
So this is the expectation maximization style approach.
Exactly.
And then you don't really need this.
This is just for cleanliness to show clearly that there's no gradients occurring above this line.
Basically freezing the weights past that.
Exactly.
And then I hit Lnet and Hnet one more time.
Which is the same thing as up above.
So this is just, it's literally just the no grad thing running one more time.
Exactly.
Cool.
Yeah.
And just make it really clear.
And then there you go.
And that's your HRM model.
Cool.
That's quite simple.
Two and two is completely sufficient.
If you actually go much higher, Konstantin showed very clearly that it doesn't actually help.
So that's two of the three recursions you said.
The third happens in the actual train loop.
The third is in the train loop and at the test loop.
They both have this M test or N supervision. which Alexia calls deep supervision.
They call it outer refinement steps.
It's just whatever you want to call it, call it NSUP.
And so you do this NSUP times during training and then during test time.
There's a different hyperparameter for how many times it recurses over each model, which is M10.
They're actually the same.
And so this and this, we can probably just call this the same.
But it's the same.
And if you actually, Constantine does a good job of this.
If you actually train on 16 and you test on only one, you get like seven eighths of the performance or almost all the performance.
So it's actually quite interesting that this is just redundant, too much compute and it doesn't actually help you all that much.
So setting this to one is actually like, But presumably for more complicated problems, having more test time compute is still useful, as the reason you would set it up this way.
Yeah, for sure.
So we call our HRM, we get some loss, we backprop, through just those two little parts here.
And then we step.
We zero out the gradient, but we do not update zh and zl.
These are still the same in it.
So that's the really important detail there.
And then as we go back, we pass in the ZH and the ZL from the previous one.
So now this is actually not the same batch because we have updated ZH and ZL.
So it's in a different part of the latent space.
Cool.
And that's the key, like, mini-batch construction through memory space concept.
Yeah, exactly.
And then at test time, it's simply the three loops.
So there's your outer refinement loop, which turns out just at train time was important.
Train time recursion was important, but test time recursion was actually not that important, which is kind of counterintuitive.
And then the HRM inside that has your two other loops.
Makes sense.
And that's it.
So pretty simple.
And now the only two changes.
The main two changes here is that they collapse, Lnet and Hnet, into just net.
Great.
And it's important detail.
These are four transformer layers.
This is four transformer layers.
And this is just one transformer layer.
And Alexi actually shows that going deeper actually didn't help.
Yeah, and actually on some tasks It was just the feed forward net actually worked just as well as the transformer there, right?
It was like on Sudoku, I think.
Yeah, on Sudoku, MLP actually outperformed the attention.
It scored zero on the maze.
The MLP scored zero on the maze.
And so it's not clear, it's not obvious that the transformer is always better.
So there's the weight sharing, and then, instead of going back just the one-two, back propping through just these two, you actually back prop through one latent recursion step, all the way through one latent recursion step.
Let me just walk through this a little bit.
So we have the same thing here.
Same starting point, yeah.
It's mainly the same thing here.
We're doing this six times.
And then we go one more time here.
And then we do our deep recursion.
This is the outer loop and sub times.
And so again, we have the no grad.
We have the detach.
And then this is where it's different.
So I am calling this latent recursion after the detach.
So it's one full recursive loop is happening.
Versus here.
And so that's the main difference in the optimization.
Otherwise, it's effectively the same.
And then it outputs, and then you're good to go.
And you train it exactly the same way before.
And then at test time, it's the same thing again.
And so largely the same.
And so in many ways, it's sort of a simplification, right?
You're collapsing certain parts of it.
You're simplifying this net architecture.
It's slightly more complicated along this back prop through time part, because you're actually back propping through more than you did before.
But it's like taking a bunch of lessons from the first one and basically simplifying most of it.
Which is actually why she needs, I think is why she needs to make the model smaller.
And so it's a 28 million parameter model for HRM.
Now she brings it down to a seven million perimeter model and it actually gets from 70 to 87 on ArcPrize 1 and does actually quite well on ArcPrize 2 as well.
And so yeah, so she makes the model three four times smaller, but because it has that recursion it actually outperforms.
And there is this researcher named Melanie Mitchell that writes this book, talking about this very phenomenon, which is, like it is Sufficient, not necessary to go bigger and get better performance.
And it is sufficient and not necessary to add more recursion.
And so where I'm really excited is what happens if you do both.
And you're still limited by back wrap through time.
Even Alexia is limited by back wrap, that last step. from a memory perspective for sure.
And so if you can make the model really big and you have lots of recursion and we do something else other than back prop through time, then we can get all the benefits of this and all the benefits of the giant LLMs, and then you can get some crazy stuff.
So now to wrap up, why don't we talk a little bit about the bigger picture?
What does this mean for the field of AI research?
How should people think about where these models fit into the current span of research happening?
Especially given that it seems like a bit of a departure from a lot of the methods that people are used to hearing about and, increasingly seeing products that people use.
Well, I think, for one from the arguments that Schmidhuber makes and that we've talked about today, recursion is important.
And it's not going away.
And clearly, the benefit is here of adding recursion into models.
And you've seen things like the recursion language models out of Google that are pretty powerful and cool.
Um, and so, uh, that's, that's definitely one piece that's, I don't think going away anytime soon.
Um.
The next one is this add a refinement loop like back T T B T T.
Like T equals one.
Truncated back wrap through time T equals one.
I think that that is a really powerful idea.
And the fact that that works so well.
Uh, we have yet to really explore that, really understand what's happening there.
And then the third is that idea of like okay, we know that recursion works.
We have these tiny recursive models that are seven million parameters that can solve a hundred.
A trillion parameter model can't solve, trained on the entire internet, and a seven million parameter wins.
The right answer is to take the amazingness here and take the amazingness here, which probably is already in Gemini already or some of these.
It might be, at least in some parts.
But when you take the benefit of both these TRMs and these giant models and you actually slam them together, I think that it's just going to take off and it's going to be really huge.
Yeah, one of the things that's really interesting about these TRMs and HRMs is they're not general purpose models, right?
These were task-specific models, right?
The model trained to do Sudoku cannot do ArcPrize inherently.
It has to be trained on the ArcPrize set to do so.
Versus the LLMs that are used on these tasks are general purpose models that maybe get some additional fine tuning data or in context learning data on those tasks.
And so I think that's where the interesting overlap might come is if you can make these more general purpose agents that can somehow be general purpose in the way that the sort of next token prediction algorithm is given us, and do more complex reasoning to achieve that.
It seems like you can have really efficient architectures to do scaled up reasoning.
Right.
A lot of the view of what these elements are doing is finding really amazing embedding representation spaces.
Yes.
But reasoning inside that space is actually not done all that much.
Yeah.
It's always through the token space.
It's always through the token space.
So what you can imagine is we found mapping from token space or from vision from pixels, some really cool latent space where like, things are just nicely semantically separated and we can, you know, makes it really easy for downstream tasks to do.
But now in that space, use this like tiny reasoning models, use some type of recursion inside that and train that model on that, a little small model on that reasoning space.
I think that's really going to work.
Francois, thanks so much for breaking it all down for us.
See you all in the next episode of Decoded.
Thank you.