Reproduce or extend published agentic reinforcement learning experiments.
Evaluate an AI agent on text-based navigation tasks like ALFWorld.
Test agent performance on simulated online shopping tasks with WebShop.
Benchmark question-answering agents that query a document retrieval system.
| zju-real/sdar | primeintellect-ai/experiments-autonomous-speedrunning | wanshuiyin/aris-in-ai-offer | |
|---|---|---|---|
| Stars | 71 | 71 | 71 |
| Language | Python | Python | Python |
| Setup difficulty | — | hard | easy |
| Complexity | 5/5 | 4/5 | 2/5 |
| Audience | researcher | researcher | researcher |
Figures from each repo's GitHub metadata at analysis time.
SDAR is a research codebase implementing a method called Self-Distilled Agentic Reinforcement Learning. It addresses a challenge in training AI agents that need to take sequences of actions to complete tasks, such as navigating a simulated home environment or browsing an online store. Standard reinforcement learning (a technique where an AI learns by trial and reward) can be slow or unstable when applied to these multi-step agentic tasks. SDAR introduces a self-distillation step, where the agent periodically learns from its own past successful trajectories to stabilize and accelerate training. The code is evaluated on three benchmarks: ALFWorld (a text-based home navigation and task completion environment), WebShop (simulated online shopping requiring search and decision-making), and Search-QA (question answering that requires querying a document retrieval system). The paper reports substantial improvements over a standard reinforcement learning baseline on all three. The implementation is in Python and builds on the verl and verl-agent reinforcement learning frameworks. Training involves large language models run via vLLM (a high-throughput serving library), and the Search environment requires a separate local document retrieval server using FAISS (a library for fast similarity search over large datasets). The setup is complex, requiring multiple conda environments and GPU memory in the range needed for multi-billion-parameter language model training. This is a research artifact released alongside a paper on arXiv and is intended for AI researchers working on language model agent training.
A research codebase that trains AI agents to complete multi-step tasks faster and more stably by having them learn from their own past successes.
Mainly Python. The stack also includes Python, PyTorch, vLLM.
Mainly researcher.
This repo across BitVibe Labs
Verify against the repo before relying on details.