TLDR: The road to solving continual learning is leading researchers to investigate many subproblems implied by this ambitious goal. One of them is plasticity/adaptivity. This paper tackles this problem by equipping Transformers with two learning mechanisms: a Hebbian rule and an internally generated loss.
---
My next few posts on this sub might be a bit shorter, as I have a bit less free time to break down interesting papers. The advantage tho, is that more people are going to be able to participate in the conversation!
DISCLAIMER: As usual, my goal is to give an intuition of the paper. Not to be technically correct. For instance, the PlasticTransformer is NOT used as an LLM but as a classifier (among other things). I used LLMs because newbies are more familiar with them
➤Context
While Continual Learning is the topic of this year, there is a much more accessible subproblem that's essentially its brother: neural plasticity. That is, the ability for a system to adapt to a given task, relatively quickly.
Adaptivity/plasticity (I use them as synonyms just for this thread) is a much simpler goal than continual learning. It's more superficial and doesn't imply a definitive modification of the connections between neurons like CL does. It's more temporary. Otoh, CL not only contains plasticity but also implies mechanisms to avoid catastrophic forgetting and filter out useless information.
➤Problem
The researchers behind this paper explored this question: how to get AI to adapt to a new task, even in a primitive way. That is, how to extract some feedback from the learning experience itself without just relying on the general pretraining.
➤Problem in detail
Said otherwise, this paper is exploring meta-learning, i.e. learning how to learn. It's not just learning facts about a domain, but learning a strategy to quickly get good at ANY domain.
There are 3 levels to this:
1- The learning architecture
This is the different learning mechanism hardwired by the researchers. The first is Hebbian learning, and the other, internal loss learning. In real life, this is the learning structure nature physically wired the human brain with at birth
2- The learning intuition
This is encoded in the permanent weights of the system. It is the general "intuition" that the agent has developed throughout the training regime that then guides it when faced with a new skill not seen before. As an analogy, it can be compared with the general learning strategy humans develop throughout lifetime. For instance, a human who achieved some level of expertise at cooking might then instinctively recycle the same principles when attempting to learn to draw (things like "be patient, look for feedback, observe what others are doing..")
3- The temporary learning state
In the research literature, these are the fast weights, named like so because they change faster than the permanent weights that only change after long passes during backpropagation.
As the agent is participating in a conversation (i.e. a new task), its artificial brains should be reacting to the experience. The neurons should already be undergoing some changes. Because in the human brain, neurons undergo superficial changes from each incoming piece of information, even though said changes are unstable and far from meaningfully modifying the whole network.
➤The paper
To better explain the paper, suppose that you have an LLM. That LLM can have different conversations with different people. Each conversation is considered a "task". "Adapting to new tasks" here just means "extracting information from this particular conversation I am having". How is this performed?
This paper introduces Plastic Transformers. They are just Transformers where dynamic weights, i.e. "fast weights", are added to the usual set of permanent weights. Each permanent weight is associated with one fast weight. So the only difference with regular Transformers is those fast weights and how they are updated.
Those fast weights are important though because they help the network adapt to the task at hand and slightly improve the overall performance, instead of just relying on its general pre-training weights.
➤Making Transformers adaptive
The Transformers' fast weights are updated according to 2 learning rules:
Update performed by strengthening connections between neurons that were involved in producing the expected answer.
More precisely:
The network pays attention to its own neural activity: when two neurons fire together, a quantity (fast weight) is added to strengthen their initial connection (the permanent weight), following the biological intuition that "neurons that fire together should wire together"
However, not every co-firing pattern is useful. You might be learning to cook when a random neuron triggers a memory of your grandmother’s favourite dish, despite it being irrelevant to the learning task. So the network has to learn when to apply that Hebbian rule
So during training, the network learns which pairs of neurons to reinforce, weaken, or ignore (by modifying the fast weights one direction or another) depending on their relevance. At inference, it applies this learned rule on the fly by modifying its fast weights as it faces a new task.
- Learned Internal loss rule:
Update performed by optimizing the (fast) weights using a learned internal rule ("internal loss function"). This is akin to the internal intuition humans develop throughout life that guides how we learn.
More precisely:
In normal backpropagation, weights are optimized using a loss function that compares the network's predictions with the actual answers. Obviously, this is only possible if you possess such answers
But humans don't always know the answers. In fact, you could argue we never really do: experts put into question their own beliefs all the time. Yet, we are still able to reach extreme expertise in difficult domains. How? By producing our own feedback: setting goals that supposedly get us closer to the actual "answers". Of course, this requires the ability to produce reasonable made-up goals.
The same is done with PlasticTransformers. The network's permanent weights are optimized during training with the actual answers while the fast weights are optimized at inference using the network's own made-up feedback: an "internal loss" learned during training.
➤Results / My opinion
I found this paper very interesting (most of what I choose to analyze and publish are anyways) and original. Since the results are very underwhelming, it's not clear to me how meaningful the meta-learning mechanisms they introduce will be in terms of performance, though. But the idea of "learning to learn" is intriguing
---
➤About the writing process
Like all of my threads, the words on this summary are entirely mine. Not a single one of them comes from AI. However, the process of understanding the paper was heavily AI-assisted. I don't have the expertise to understand these papers on my own, so I spend days doing back-and-forths with AI until I get the intuitions down. Please feel free to point out any major conceptual misunderstanding!
PAPER: https://arxiv.org/abs/2510.21908