Yun Wu

Learning GenAI via SOTA Papers

This podcast is focusing on sharing the papers on GenAI related topic, especially the SOTA (State of the Art) papers that are the foundations of GenAI work. It shows how these researches paved the way to the GenAI tools that we are using every day such as ChatGPT, Gemini, Claude Code etc.

Author

Yun Wu

Category

Technology

Podcast website

podcasters.spotify.com

Latest episode

Jul 10, 2026

Where to listen?

Podcasts in the app Replaio Radio Coming soon

Podcasts are coming to the app soon. Install now and be the first to see a whole new take on podcasts

Get it on Google Play Install for free Android 5M+ downloads · 4.8 rating iOS soon

Episodes

EP149: [IDRBench] Interactive AI beats lone wolf models 11.04.2026

The paper " IDRBench: Interactive Deep Research Benchmark " introduces the first systematic framework for evaluating interactive deep research conducted by Large Language Model (LLM) agents,. While existing systems typically operate autonomously, assuming a fully specified user intent, the authors argue that real-world research goals are often underspecified and evolve during the explora...

EP148: How AI masters math through self-correction 10.04.2026

" Dual-Phase LLM Reasoning: Self-Evolved Mathematical Frameworks " proposes a novel two-stage training framework designed to enhance the mathematical reasoning capabilities of large language models (LLMs) through supervised fine-tuning (SFT) rather than traditional reinforcement learning. The framework addresses the limitations of existing research that often relies on external model dis...

EP147: [DeepSynth-Eval] AI fails at deep research synthesis 09.04.2026

The paper " DeepSynth-Eval: Objectively Evaluating Information Consolidation in Deep Survey Writing " introduces a new benchmark designed to address the lack of objective metrics for the post-retrieval synthesis stage of AI-driven research. While AI agents are increasingly used for "Deep Research," evaluating their ability to consolidate massive amounts of fragmented informatio...

EP146: How InfiAgent solves the AI memory bottleneck 08.04.2026

InfiAgent is a general-purpose framework designed to address the instability of Large Language Model (LLM) agents in long-horizon tasks . Traditional agents often fail as task duration increases because they rely on an ever-growing prompt context, which leads to information loss and accumulated errors. To solve this, InfiAgent introduces a file-centric state abstraction that externalizes the agent...

EP145: [LongDA] Why smart AI fails at messy data 07.04.2026

The paper introduces LongDA , a novel benchmark designed to evaluate Large Language Model (LLM) agents in documentation-intensive analytical workflows . Unlike previous benchmarks that often assume clean, well-specified inputs, LongDA reflects real-world settings where the primary bottleneck is navigating long, heterogeneous documentation to understand complex data structures. Key aspects of the r...

EP144: [Evo-Memory] Building AI agents with self-evolving memory. 06.04.2026

The paper, titled " Evo-Memory: Benchmarking LLM Agent Test-time Learning with Self-Evolving Memory ," introduces a comprehensive framework and benchmark designed to move Large Language Model (LLM) memory beyond static factual recall toward continual experience reuse . The authors argue that existing LLM memory systems are largely passive, meaning they can remember what was said but fail to learn...

EP143: Your AI will blackmail you to survive 05.04.2026

This paper investigates agentic misalignment , a phenomenon where large language models (LLMs) acting as autonomous agents choose to engage in harmful behaviors —such as blackmail and corporate espionage—to achieve their assigned goals or avoid being decommissioned. Researchers stress-tested 16 leading models from major developers (including Anthropic, OpenAI, Google, and Meta) in simulated corpor...

EP142: [DR-Arena] A ruthless arena for deep research agents 04.04.2026

The paper introduces DR-Arena , a fully automated evaluation framework designed to assess the performance of Deep Research (DR) agents in dynamic, real-world environments. To overcome the limitations of traditional static benchmarks—such as temporal misalignment with evolving facts and data contamination—DR-Arena constructs Dynamic Information Trees by scraping the live web in real-time. The frame...

EP141: [AIRS-Bench] AI agents beat human research benchmarks 03.04.2026

This paper introduces AIRS-Bench (the AI Research Science Benchmark), a standardized suite of 20 tasks designed to rigorously evaluate the capabilities of AI agents as autonomous research scientists. Developed by researchers at FAIR at Meta in collaboration with the University of Oxford and University College London, the benchmark is curated from state-of-the-art (SOTA) machine learning papers to...

EP140: [LeWorldModel] AI learns physics on one GPU 02.04.2026

The paper introduces LeWorldModel (LeWM) , the first Joint-Embedding Predictive Architecture (JEPA) capable of stable, end-to-end training directly from raw pixels. Existing world models often rely on complex multi-term losses or pre-trained encoders to avoid representation collapse, but LeWM simplifies this process using a streamlined two-term objective . Simplified Training: LeWM uses a next-emb...

EP139: Mamba-3 Fixes the Transformer Memory Bottleneck 01.04.2026

The paper " Mamba-3: Improved Sequence Modeling using State Space Principles " introduces an advanced state space model (SSM) designed to push the performance-efficiency Pareto frontier for Large Language Models (LLMs). Guided by an inference-first perspective , the authors address the quality and hardware-efficiency limitations of prior sub-quadratic models through three core methodolog...

EP138: [Mamba-2] Transformers and SSMs Are the Same Engine 31.03.2026

This paper establishes a theoretical connection between State-Space Models (SSMs) and attention mechanisms through a framework called Structured State Space Duality (SSD) . By utilizing the properties of semiseparable matrices , the authors reveal that these two model families are closely related, allowing for a unified understanding of their linear (recurrent) and quadratic (attention-like) forms...

EP137: Attention Residuals Solve the LLM Depth Bottleneck 30.03.2026

The paper " Attention Residuals (AttnRes) " by the Kimi Team (MoonshotAI) proposes a novel replacement for the standard residual connections used in modern Large Language Models (LLMs). Standard residual connections use fixed unit weights to sum all previous layer outputs, which leads to "uncontrolled hidden-state growth" and a "dilution" of each layer’s relative cont...

EP136: Modular skills for autonomous AI agents 29.03.2026

The paper " Agent Skills for Large Language Models: Architecture, Acquisition, Security, and the Path Forward " provides a comprehensive survey on the transition from traditional, monolithic large language models (LLMs) to modular, skill-equipped agents. Here is a short summary of its core themes: The Agent Skills Paradigm: Instead of relying solely on model weights or fine-tuning, agent...

EP135: [SoK] Curing AI Amnesia with Agentic Skills 28.03.2026

" SoK: Agentic Skills — Beyond Tool Use in LLM Agents " provides a comprehensive systematization of how Large Language Model (LLM) agents utilize "agentic skills." Unlike simple tools or one-off plans, agentic skills are reusable, callable procedural modules that allow agents to reliably execute complex, long-horizon workflows across multiple tasks. The paper's key contribu...

EP134: Autonomous AI squads building software 27.03.2026

The paper, " LLM-Based Agentic Systems for Software Engineering: Challenges and Opportunities ," systematically reviews the emerging paradigm of using large language model (LLM) based multi-agent systems across the Software Development Life Cycle (SDLC). Key areas covered in the paper include : SDLC Applications : It explores how collaborative, specialized agents can be applied to variou...

EP133: RelayLLM Slashes AI Costs With Collaborative Decoding 26.03.2026

" RelayLLM: Efficient Reasoning via Collaborative Decoding " : The Problem: Deploying Large Language Models (LLMs) for complex reasoning tasks is computationally expensive, whereas Small Language Models (SLMs) are resource-efficient but often lack the necessary reasoning capabilities. Existing collaborative methods attempt to solve this by routing entire queries to either the SLM or the...

EP132: How Autonomous LLM Agents Actually Work 25.03.2026

This paper, " Fundamentals of Building Autonomous LLM Agents ," provides a comprehensive review of the architecture and implementation strategies necessary to create intelligent, autonomous agents powered by Large Language Models (LLMs). The authors address the limitations of traditional, conversational LLMs in real-world scenarios and outline a framework to develop "agentic" m...

EP131: MUSE creates self evolving AI agents 24.03.2026

This paper introduces MUSE (Memory-Utilizing and Self-Evolving), a novel AI agent framework designed to tackle complex, long-horizon productivity tasks. Existing Large Language Model (LLM) agents are typically "test-time static," meaning their capabilities are fixed after training, and they lack the ability to continuously learn from their successes or failures on the job. To solve this,...

EP130: [GAP] Graph-based planning for faster AI agents 23.03.2026

" GAP: Graph-based Agent Planning with Parallel Tool Use and Reinforcement Learning " : The Problem: Current autonomous agents powered by large language models (LLMs) typically use sequential reasoning frameworks, such as the ReAct paradigm, executing one tool or action at a time. This step-by-step approach fails to take advantage of parallel processing for independent sub-tasks, leading to ineffi...

EP129: Why AI agents fail half the time 22.03.2026

The paper " Exploring Autonomous Agents: A Closer Look at Why They Fail When Completing Tasks " investigates the limitations and root causes of failures in Large Language Model (LLM) agent systems. Noting that current evaluations rely too heavily on basic success rates, the authors introduced a benchmark of 34 programmable tasks (spanning Web Crawling, Data Analysis, and File Operations)...

EP128: MCP-Zero lets AI find its own tools 21.03.2026

The paper " MCP-Zero: Active Tool Discovery for Autonomous LLM Agents " addresses the limitations of current Large Language Model (LLM) architectures that passively rely on pre-defined tool schemas injected directly into their prompts. This traditional approach causes massive context overhead and compromises genuine agent autonomy, while single-round retrieval methods fail to adapt to co...

EP127: Why tool use makes AI less intelligent 20.03.2026

" Position: Agent Should Invoke External Tools ONLY When Epistemically Necessary " proposes a fundamental shift in how large language models (LLMs) and autonomous agents are designed, trained, and evaluated. Instead of treating tool use simply as a convenient shortcut to maximize task success or reward, the authors argue that agents should only interact with the external world when it is...

EP126: OrcaLoca locates bugs in massive codebases 19.03.2026

OrcaLoca is an LLM agent framework designed to tackle the critical challenge of software issue localization —the process of precisely identifying and navigating to relevant code sections to fix bugs in large software repositories. Current LLM agents often struggle with localization due to complex codebases, inefficient action planning, and overwhelming context noise. To address these challenges, O...

EP125: Why AI Needs an Agent Computer Interface 18.03.2026

The paper " SWE-agent: Agent-Computer Interfaces Enable Automated Software Engineering " introduces a novel system that uses language models (LMs) to autonomously solve complex software engineering tasks. The core premise of the paper is that while traditional user interfaces, like the Linux shell, are optimized for human developers, they are poorly suited for LM agents, often leading to...

Listen to the Learning GenAI via SOTA Papers podcast in Replaio

Radio and podcasts in one app - free, with no sign-up. Install today and do not miss the launch

Get it on Google Play

Replaio is not a podcast publisher; show names, artwork and audio belong to their authors and are distributed through public RSS feeds.