INQUIRING LINE

How does SDPO relate to agents learning from verbal reflection without parameter updates?

This explores the contrast between SDPO — a parameter-updating method that tunes a model's weights from preference signals — and a different family of agents that improve purely by writing down what went wrong and reusing those notes, no weights touched; the corpus is rich on the second half and silent on SDPO by name.


This reads the question as asking how weight-tuning preference methods like SDPO sit alongside agents that learn by reflecting in words and storing those reflections rather than updating any parameters. Up front: the corpus here doesn't contain a note on SDPO specifically, so the honest answer is that the relationship has to be drawn by contrast — the collection is deep on the no-parameter-update side and can tell you a lot about what that alternative actually buys you.

The cleanest anchor is Reflexion, where an agent fails a task, writes a verbal self-diagnosis, and stores it in episodic memory so the next attempt goes better — all without touching weights Can agents learn from failure without updating their weights?. The interesting detail is *why* this works: a clean success/failure signal stops the model from rationalizing its mistakes, and keeping the reflection uncompressed keeps it usable. That's a different theory of learning than gradient-based preference tuning. Where a method like SDPO bakes the lesson into the weights once and for all, verbal reflection keeps the lesson sitting in readable memory where it can be inspected, edited, or thrown away.

Several notes push this into a full alternative paradigm rather than a trick. AgentFly reframes the whole learning problem as a memory-augmented decision process — credit assignment and policy improvement happen entirely through memory operations, and it still hit 87.88% on a hard benchmark with the base model frozen Can agents learn continuously from experience without updating weights?. VOYAGER stores executable skills in a searchable library and composes new ones from old, and the headline benefit is precisely what weight updates struggle with: no catastrophic forgetting Can agents learn new skills without forgetting old ones?. That's the sharpest point of contrast with any fine-tuning-based approach — externalizing the lesson dodges the forgetting problem that updating parameters tends to create.

The corpus also gets specific about *how* to handle reflections well, which is where these methods earn their keep. SkillRL shows you shouldn't treat wins and losses the same: keep successes as concrete demonstrations, but abstract failures into general lessons — the asymmetry mirrors how human experts reason and avoids the degradation you get from uniform memory consolidation Should successful and failed episodes be processed differently?. DeepAgent's autonomous memory folding tackles the cost side, compressing interaction history into structured schemas so reflection stays affordable Can agents compress their own memory without losing critical details?. And a quieter note frames the stakes: agents trained only on static expert demonstrations are capped by what their curators imagined, because they never learn from their own failures Can agents learn beyond what their training data shows? — which is exactly the ceiling that learning-from-reflection is built to break through.

So the relationship, drawn laterally: preference-tuning methods and verbal-reflection methods are two answers to the same question — how does an agent get better from its own experience? One writes the answer into weights; the other writes it into memory you can read. If you want the deepest cut on why the memory route is attractive, the forgetting-avoidance argument in VOYAGER and the win/loss asymmetry in SkillRL are the doorways worth opening — and you'd leave knowing that "learning" for an agent doesn't have to mean "changing the model" at all.


Sources 6 notes

Can agents learn from failure without updating their weights?

Reflexion demonstrates that unambiguous environmental feedback (success/failure) enables agents to write useful self-diagnoses and improve across episodes without parameter updates. The binary signal prevents rationalization, and keeping reflections uncompressed preserves their usability.

Can agents learn continuously from experience without updating weights?

AgentFly formalizes agent learning as a Memory-augmented MDP with three memory modules (case, subtask, tool) that enable credit assignment and policy improvement entirely through memory operations. The approach achieved 87.88% on GAIA validation without modifying LLM parameters.

Can agents learn new skills without forgetting old ones?

VOYAGER demonstrates that storing executable skills in an embedding-indexed library and composing complex skills from simpler ones allows agents to learn continuously while avoiding the forgetting that occurs with weight-update-based methods. Environmental feedback refines skills while an automatic curriculum drives continual exploration.

Should successful and failed episodes be processed differently?

SkillRL demonstrates that treating successful episodes as concrete demonstrations and failures as abstracted lessons achieves state-of-the-art performance on complex tasks while using substantially less context than uniform approaches. The asymmetry mirrors human expert reasoning and avoids the degradation seen in uniform consolidation methods.

Can agents compress their own memory without losing critical details?

DeepAgent's autonomous memory folding consolidates interaction history into episodic, working, and tool memory schemas. This reduces token overhead while letting agents pause to reconsider strategies—the autonomy and structure together avoid degradation that plagues poorly designed consolidation.

Can agents learn beyond what their training data shows?

Agents trained on static expert datasets cannot learn from their own failures or generalize beyond demonstrated scenarios because they never interact with environments during training. Competence is capped by what curators imagined, not by agent capacity.

Next inquiring lines