ICRL: Jak AI uczy się internalizować krytykę i ewoluować poza nadzór

arXiv cs.AI May 2026
Source: arXiv cs.AIreinforcement learningautonomous agentsArchive: May 2026
Przełomowa struktura o nazwie ICRL (Internalized Criticism Reinforcement Learning) uczy agentów AI trwałego internalizowania informacji zwrotnych, przekształcając ich z pasywnych korektorów błędów w systemy samodoskonalące się. Może to wyeliminować kosztowny cykl zewnętrznego nadzoru i odblokować prawdziwie autonomiczne działanie.
The article body is currently shown in English by default. You can generate the full version in this language on demand.

Large language model agents have a fundamental flaw: they can follow corrective instructions in the moment, but once the critic falls silent, they revert to old errors. The ICRL framework, developed by researchers from leading institutions, solves this by using reinforcement learning to embed external criticism directly into the model's parameter updates. Instead of treating feedback as a temporary instruction, ICRL treats each critique as a training signal that permanently reshapes the agent's behavior. This means an agent that stumbles on a reasoning task, receives a correction, and then internalizes that correction—so the next time it faces a similar challenge, it gets it right without needing a reminder. The implications are profound: autonomous agents operating in the wild—from code generation to customer service to scientific research—can now continuously improve without human oversight. ICRL effectively bridges the gap between supervised fine-tuning and online learning, creating a closed-loop system where the agent is both student and teacher. This is not just an incremental improvement; it represents a paradigm shift in how we think about AI reliability and self-evolution.

Technical Deep Dive

The core innovation of ICRL lies in its elegant solution to the "short-term memory" problem of LLM agents. Traditional approaches to agent correction rely on either prompt engineering (adding a system message like "Remember to double-check your math") or external critic modules that provide real-time feedback. Both fail because they do not alter the model's underlying weights. The moment the prompt changes or the critic is removed, the model's behavior snaps back to its pre-correction state.

ICRL breaks this cycle by framing the correction process as a reinforcement learning (RL) problem. The architecture consists of three components:

1. The Agent (Policy Network): A standard LLM that generates actions (text, code, API calls).
2. The Critic (Reward Model): An external evaluator that scores the agent's output—this could be a human, a rule-based checker, or another LLM.
3. The ICRL Training Loop: Instead of using the critic's feedback as a one-time instruction, ICRL uses it to compute a policy gradient update. The agent's parameters are adjusted so that actions that received positive criticism are reinforced, and actions that received negative criticism are suppressed.

The key technical detail is that ICRL does not require a separate training phase. It operates online: during deployment, every interaction with the critic triggers a small, localized parameter update. This is achieved via a variant of Proximal Policy Optimization (PPO) adapted for autoregressive language models. The update is constrained to be small (using a KL-divergence penalty) to prevent catastrophic forgetting of the base model's capabilities.

A notable open-source implementation that aligns with ICRL principles is the trl library (Transformer Reinforcement Learning) by Hugging Face, which has over 15,000 stars on GitHub. While trl implements standard RLHF (Reinforcement Learning from Human Feedback), ICRL extends this by making the critic feedback loop continuous and online, rather than a one-time fine-tuning step. Another relevant repository is DeepSpeed Chat (Microsoft), which provides efficient RLHF training pipelines—though neither fully implements ICRL's online, persistent learning paradigm.

Benchmark Performance Data:

| Task | Baseline LLM (No Correction) | LLM + Prompt Correction | LLM + ICRL (After 100 Critiques) |
|---|---|---|---|
| Math Word Problems (GSM8K) | 58.2% | 61.4% (with prompt) | 79.8% |
| Code Generation (HumanEval) | 48.7% | 52.1% (with prompt) | 71.3% |
| Multi-step Reasoning (HotpotQA) | 62.5% | 65.0% (with prompt) | 82.1% |
| Instruction Following (AlpacaEval) | 76.3% | 78.9% (with prompt) | 89.4% |

Data Takeaway: ICRL delivers a 15-20 percentage point improvement over prompt-based correction across all tasks. The critical insight is that prompt correction plateaus quickly (the model cannot learn from the prompt itself), while ICRL's parameter updates accumulate over time, leading to sustained gains.

Key Players & Case Studies

The ICRL framework was introduced by a collaborative team from Carnegie Mellon University, Google DeepMind, and Stanford University. The lead author, Dr. Ananya Kumar, previously worked on self-supervised learning at Meta AI and has a track record of pushing the boundaries of online learning. The paper has already sparked significant interest in the open-source community, with unofficial implementations appearing within days.

Several companies are positioned to benefit from or compete with ICRL:

- Anthropic: Their Constitutional AI approach uses a set of written principles to guide model behavior. ICRL could be seen as a dynamic, online version of this—where the "constitution" is continuously updated based on real-world feedback. Anthropic's Claude models already use RLHF, but ICRL would allow them to adapt to user-specific preferences without retraining.
- OpenAI: With GPT-4o and the Assistants API, OpenAI has a vested interest in making agents more autonomous. Their current approach relies on system prompts and function calling. ICRL could be integrated into their fine-tuning API, allowing developers to create agents that learn from user corrections in real time.
- Google DeepMind: As a co-developer of ICRL, DeepMind is likely to integrate this into their Gemini agents. Their work on Sparrow (a dialogue agent with rule-based critics) directly parallels ICRL's architecture.
- Startups like LangChain and AutoGPT: These platforms provide orchestration layers for LLM agents. ICRL could become a core component of their agent frameworks, enabling persistent learning across sessions.

Comparison of Agent Correction Approaches:

| Approach | Requires External Critic? | Permanent Behavior Change? | Deployment Cost | Scalability |
|---|---|---|---|---|
| Prompt Engineering | No | No | Low | High |
| RLHF (Offline) | Yes (pre-training) | Yes | Very High | Low |
| Online RLHF | Yes (continuous) | Yes | High | Medium |
| ICRL | Yes (continuous) | Yes | Medium | High |

Data Takeaway: ICRL strikes a unique balance. It offers permanent behavior change like RLHF but at a fraction of the cost because it operates online and requires no separate training infrastructure. Its scalability is high because the critic can be automated (e.g., a code linter or a rule-based validator).

Industry Impact & Market Dynamics

The market for AI agents is projected to grow from $5.1 billion in 2024 to $47.1 billion by 2030 (CAGR of 44.8%), according to industry analysts. The single biggest barrier to adoption is reliability—enterprises are hesitant to deploy agents that cannot self-correct without human supervision. ICRL directly addresses this pain point.

Impact on Business Models:

1. Reduced Human-in-the-Loop Costs: Currently, companies deploying AI agents must budget for continuous human monitoring and feedback. ICRL reduces this to a one-time setup of an automated critic. For a customer service chatbot handling 1 million queries per month, this could save an estimated $200,000 annually in human reviewer costs.

2. New Product Categories: We will likely see "self-improving agent" as a product tier. Platforms like Microsoft Copilot or Salesforce Einstein could offer ICRL-enhanced versions that learn from user corrections over time, justifying higher subscription fees.

3. Shift in AI Infrastructure: The demand for real-time RL training infrastructure will grow. Cloud providers (AWS, GCP, Azure) may offer specialized ICRL-as-a-Service, where the critic and training loop are managed, and users only pay per parameter update.

Funding & Investment Trends:

| Year | Investment in RL-based Agent Startups | Key Deals |
|---|---|---|
| 2022 | $1.2B | Anthropic ($580M), Cohere ($125M) |
| 2023 | $3.8B | Inflection AI ($1.3B), Adept ($350M) |
| 2024 (H1) | $2.1B | Imbue ($200M), H ($220M) |

Data Takeaway: Investment in RL-based agent technologies has tripled in two years. ICRL sits at the intersection of two hot trends: reinforcement learning and autonomous agents. Venture capital is already flowing toward startups that can demonstrate persistent learning capabilities.

Risks, Limitations & Open Questions

Despite its promise, ICRL is not without significant challenges:

1. Critic Quality Dependency: ICRL is only as good as its critic. If the critic is flawed, biased, or inconsistent, the agent will internalize those flaws. This creates a risk of amplifying errors rather than correcting them. For example, a critic that penalizes creative solutions in favor of safe, formulaic answers could make the agent less innovative over time.

2. Catastrophic Forgetting: While the KL-divergence penalty helps, continuous parameter updates over thousands of interactions could still lead to drift. An agent that learns to excel at math problems might forget its general knowledge. Research into elastic weight consolidation (EWC) and other continual learning techniques will be critical.

3. Security and Adversarial Attacks: If an attacker can control the critic (e.g., by injecting malicious feedback), they could permanently corrupt the agent's behavior. This is a more insidious version of prompt injection—instead of a one-time jailbreak, the attacker could implant a persistent backdoor.

4. Computational Cost: Each ICRL update requires a forward pass, a backward pass, and a KL-divergence computation. For a 70B-parameter model, this could add 10-20 milliseconds per interaction. At scale, this latency could be prohibitive for real-time applications like autonomous driving or high-frequency trading.

5. Regulatory and Ethical Concerns: How do you audit a model that is constantly changing? Regulators may require that AI systems be "frozen" at deployment for safety certification. ICRL's continuous learning nature clashes with this requirement. The EU AI Act, for instance, may need to be updated to accommodate self-improving systems.

AINews Verdict & Predictions

ICRL is not a silver bullet, but it is the most important step toward truly autonomous AI agents since the invention of the transformer. The core insight—that feedback must be internalized into parameters, not prompts—is obvious in retrospect, but executing it at scale is a monumental engineering challenge.

Our Predictions:

1. Within 12 months, at least two major LLM providers (likely Anthropic and Google DeepMind) will ship ICRL-like capabilities as a feature of their agent APIs. The marketing will emphasize "agents that learn from you."

2. Within 24 months, the open-source community will produce a production-ready ICRL library (likely an extension of Hugging Face's trl) that supports multi-agent critics and automated reward shaping. This will democratize access to the technology.

3. The biggest near-term risk is not technical but social: companies will rush to deploy ICRL agents without adequate critic safeguards, leading to high-profile failures where agents learn harmful behaviors. This will trigger a regulatory backlash.

4. The winner in the ICRL race will not be the company with the best base model, but the one with the best critic infrastructure—the ability to generate high-quality, diverse, and unbiased feedback at scale. This is a data moat problem, not a model architecture problem.

5. Long-term (5 years), ICRL will be seen as the precursor to "self-evolving AI"—systems that not only learn from criticism but also generate their own critiques, closing the loop entirely. This is the path to artificial general intelligence (AGI), where an AI can identify its own weaknesses and design its own training curriculum.

The era of the passive, static AI is ending. ICRL marks the beginning of the active, self-improving AI. The question is no longer whether AI can learn, but whether we can teach it to learn wisely.

More from arXiv cs.AI

Zmiana w bezpieczeństwie AI: dlaczego różnorodne monitory przewyższają surową moc obliczeniową w nadzorze nad agentamiThe race to deploy autonomous AI agents in high-stakes domains like finance, healthcare, and autonomous driving has expoSilnik Przekonań: Uczynienie Zmian Stanowisk AI Audytowalnymi i OdpowiedzialnymiThe Belief Engine, a novel framework for multi-agent large language models, addresses the critical opacity of position cRozpoznawanie celów Zero-Shot: Jak LLM-y odczytują ludzkie intencje bez treninguA new wave of research is demonstrating that large language models (LLMs) possess a remarkable ability to perform zero-sOpen source hub339 indexed articles from arXiv cs.AI

Related topics

reinforcement learning76 related articlesautonomous agents134 related articles

Archive

May 20261945 published articles

Further Reading

Framework RAMP przełamuje wąskie gardło planowania w AI: jak agenci sami uczą się reguł działaniaNowa struktura badawcza o nazwie RAMP rozwiązuje fundamentalne ograniczenie w AI: konieczność ręcznego kodowania modeli Zmiana w bezpieczeństwie AI: dlaczego różnorodne monitory przewyższają surową moc obliczeniową w nadzorze nad agentamiNowy paradygmat badawczy twierdzi, że skupianie mocy obliczeniowej w jednym 'supermonitorze' jest mniej skuteczne niż łąPo Treningu: Przebudzenie czy Tworzenie? Zasada Wolnej Energii na Nowo Definiuje Możliwości AINowe ramy teoretyczne oparte na Zasadzie Wolnej Energii kwestionują konwencjonalną mądrość, że nadzorowane dostrajanie tAgentick Benchmark ujednolica ocenę agentów AI, kończąc erę Wieży BabelAgentick, przełomowy ujednolicony benchmark, stawia na równi agentów uczenia się przez wzmacnianie, dużych modeli języko

常见问题

这次模型发布“ICRL: How AI Learns to Internalize Criticism and Evolve Beyond Supervision”的核心内容是什么?

Large language model agents have a fundamental flaw: they can follow corrective instructions in the moment, but once the critic falls silent, they revert to old errors. The ICRL fr…

从“ICRL vs RLHF differences explained”看,这个模型发布为什么重要?

The core innovation of ICRL lies in its elegant solution to the "short-term memory" problem of LLM agents. Traditional approaches to agent correction rely on either prompt engineering (adding a system message like "Remem…

围绕“how to implement ICRL with Hugging Face trl”,这次模型更新对开发者和企业有什么影响?

开发者通常会重点关注能力提升、API 兼容性、成本变化和新场景机会,企业则会更关心可替代性、接入门槛和商业化落地空间。