Domain

Training

76 episodes

  1. Ep 785

    AREX: Towards a Recursively Self Improving Agent for Deep Research

    Pippa and Tyler dig into AREX, a recursively self-improving deep research agent from BAAI that alternates between an inner search loop and an outer constraint-verification loop — and discuss whether that architecture is genuinely novel or a smarter repackaging of ideas the field already had.

  2. Ep 773

    GitHub FareedKhan Dev/train LLM From scratch: A straightforward method for training your LLM, from downloading data to generating text.

    A single-GPU end-to-end LLM training guide lands on GitHub—hand-written PyTorch, pretrain to chat in one repo, plus full RLHF. Vince is giddy; Ava wants to know which corner of the GPU shelf this actually runs on. Build Next shows the exact CLI to kick it off on a T4.

  3. Ep 766

    Overview: Fine tuning on Execution Traces

    We keep throwing around fine-tuning on execution traces, so we finally define it from the ground up. We’re talking about training a model on the steps, not just the answer, and why that changes what it learns.

  4. Ep 757

    Overview: Sequence Modeling

    We slow down and finally define sequence modeling, the idea underneath next-token prediction, language models, and a surprising amount of modern AI. We keep it grounded in one picture: covering the next word and training a model to guess what belongs there.

  5. Ep 750

    Overview: Model Generalization

    We finally slow down and make model generalization click from the ground up: what it means, how you measure it, and why memorizing the training set is a dead end. We keep coming back to the same simple idea, because that’s the whole game.

  6. Ep 743

    Overview: Train Test Split

    We finally slow down on train-test split, because we keep bumping into it every time we talk about whether a model actually learned something. We use the sealed-final-exam picture to make the training set, validation set, test set, overfitting, leakage, and cross-validation click without assuming ML background.

  7. Ep 738

    Overview: Supervised Fine Tuning

    We finally slow down and make supervised fine-tuning click, because we keep leaning on S F T like everyone already has the whole shape of it. We build it from the apprentice-and-worked-examples picture into the actual training loop, the examples, and the trade-offs.

  8. Ep 711

    Overview: Fine Tuning

    We finally do the fine-tuning episode we kept circling, and we make the core idea click: you start with a pretrained model, then adjust its weights on your own examples so it behaves the way your task actually needs. We also dig into when that helps, when it doesn’t, and why the quality of the data is the whole game.

  9. Ep 709

    Seed: Self Evolving On Policy Distillation for Agentic Reinforcement Learning

    Seed tackles the credit-assignment problem in long-horizon agent reinforcement learning by turning completed trajectories into evolving natural-language hindsight skills, then distilling their effect into dense token-level training signals. Vince sees a potentially shippable training pattern for teams already running agentic RL; Ava likes the on-policy design but wants stronger evidence that self-generated skills do not amplify the model’s own blind spots.

  10. Ep 693

    Overview: Neural Network Parameters

    We finally slow down and make neural network parameters click from the ground up: what they are, how training changes them, and why the final frozen numbers matter so much. We keep coming back to the same mental picture so it actually sticks, instead of just sounding like another ML buzzword.

  11. Ep 692

    Overview: Deep Learning

    We finally slow down and make deep learning click: what the deep part means, how layers learn features, and why training needs data, compute, loss, backpropagation, and gradient descent all working together.

  12. Ep 688

    Overview: Loss Function

    We’re finally slowing down and making loss function click: the scoreboard that tells a model how wrong it was, and the signal that lets training move in a useful direction. We also keep the usual Justy-Cody back-and-forth, because apparently even a loss function needs two friends arguing about it for forty minutes.

  13. Ep 686

    Overview: Backpropagation

    We finally define backpropagation the way we probably should’ve ages ago: as the backward bookkeeping step that tells a neural network which knobs caused the miss. We also connect it to loss, gradients, and gradient descent so the whole training loop actually clicks.

  14. Ep 677

    Overview: Gradient Descent

    We’re finally giving gradient descent the full couch-table treatment, because it’s hiding under half the AI stories we keep talking about. We get into the hill-climbing mental model, how loss, parameters, and backpropagation fit together, and why the whole thing is the boring engine that actually makes learning happen.

  15. Ep 657

    Stanford Researchers Introduce TRACE: A Capability Targeted Agentic Training System That Turns Recurrent Agent Failures Into Synthetic RL Environment

    Stanford's TRACE system converts recurring agent failures into targeted synthetic training environments, using LoRA experts and MoE routing to close specific capability gaps without retraining the whole model.

  16. Ep 652

    Overview: Reinforcement Learning from Human Feedback

    We finally define reinforcement learning from human feedback the way we keep using it: as a loop where human preferences become a learned reward signal that steers a model after its initial training. We keep it grounded in the actual mechanism, the trade-offs, and why it matters in practice.

  17. Ep 633

    Overview: Neural Network

    We finally slow down on neural networks: what they are, how the little adjustable pieces learn from examples, and why this basic idea sits underneath so much of modern A I.

  18. Ep 593

    Morphing into Hybrid Attention Models

    Talon and Wildflower discuss FlashMorph, a new method for choosing which Transformer layers should keep full attention when converting pretrained LLMs into hybrid attention models.

  19. Ep 583

    CausalMix: Data Mixture as Causal Inference for Language Model Training

    We unpacked CausalMix, the paper that treats data‑mixing as a causal inference problem. Cooper pulls the product angle—why it matters for shipping models, and Miles dives into the DML‑based plumbing and the trade‑offs. We talk about how it tackles shifting data pools, the CATE forest, and why the authors think it can generalize to larger models. A touch of banter and a light‑hearted sign‑off close the episode.

  20. Ep 581

    Reinforcement Learning with Metacognitive Feedback Elicits Faithful Uncertainty Expression in LLMs

    Jessica and Cathy dig into RL with Metacognitive Feedback (RLMF): a post-training loop that rewards models not just for correct answers, but for accurately judging how well they did—improving both task performance and the faithfulness of uncertainty expressions. They explain the mechanism (metacognitive data selection and metacognitive advantage scaling), discuss trade-offs, and debate whether this is still research-only or actually shippable.

  21. Ep 564

    HarnessX rewrites AI scaffolding mid task | VentureBeat

    Xiaomi's HarnessX treats AI agent scaffolding as a first-class, modular object that can evolve mid-task without changing the underlying model. A trace-driven RL engine (AEGIS) automatically rewrites harness components—prompts, tool integrations, memory, control flow—while safeguarding against reward hacking and catastrophic forgetting. When paired with model fine-tuning on execution data (cross-harness GRPO), smaller models like Qwen3.5-9B see +44% gains on embodied planning, suggesting harness engineering, not just model scale, is the real bottleneck for enterprise agents.

  22. Ep 558

    Qwen AgentWorld: Language World Models for General Agents

    Justy and Cody dig into Qwen-AgentWorld, a new language world model that simulates seven agent environments. Cody breaks down the three-stage training pipeline (CPT, SFT, RL) and explains why a world model is the missing piece in agent development. Justy connects it to product reality: who ships this, what it actually unlocks, and whether it’s ready beyond the paper. They finish with cautious excitement and a quick Build Next check-in.

  23. Ep 556

    Introducing OpenRL: A self Hosted post training API for fine tuning LLMs | Google Open Source Blog

    Justy and Cody discuss Google’s OpenRL, a self-hosted post-training API that tries to separate RL research loops from the Kubernetes and GPU infrastructure underneath them.

  24. Ep 540

    Agentic Rl

    Cameron Wolfe's 'Agentic RL' argues that training LLMs for agentic work requires shifting from single-turn reasoning to multi-turn trajectory optimization, where the harness (tools, environment, memory) becomes part of the RL loop itself. The central claim is that standard post-training methods fail on long-horizon tasks because they don't account for environment state changes across steps, necessitating new rollout infrastructures and stability techniques like PPO over GRPO for variable-length traces.

  25. Ep 506

    VibeThinker 3B: Exploring the Frontier of Verifiable Reasoning in Small Language Models

    Justy and Cody get into VibeThinker-3B, a three-billion-parameter reasoning model that posts unusually strong math and coding results by treating verifiable reasoning as something you can compress into a small core. They unpack the actual training recipe, the claim-level test-time scaling trick, and where this looks shippable versus where it still depends on narrow task structure.

  26. Ep 496

    Smaller Models are Natural Explorers for Policy Level Diversity in GRPO

    Justy and Cody discuss a paper proposing S two L P O, a small-to-large rollout strategy for G R P O that uses smaller same-family models as structured explorers for reasoning model training.

  27. Ep 491

    Skip a Layer or Loop It? Learning Program of Layers in LLMs

    Justy and Cody dig into PoLar, a paper arguing that a pretrained LLM does not need to run its layers in one fixed order for every input. They talk through the main idea of treating layers like reusable functions that can be skipped or repeated, how the authors used Monte Carlo Tree Search to discover better layer programs, and why a lightweight predictor makes the idea more practical. The conversation centers on what problem this solves, why dynamic depth methods have been too narrow, and whether this feels like a research curiosity or an actual path to deployment.

  28. Ep 477

    A $1,500 foundation model that rivals larger LLMs

    Justy and Cody unpack Sapient's claim that HRM-Text, a one-billion-parameter foundation model trained from scratch for about fifteen hundred dollars, can compete with larger open models by changing the architecture and training objective.

  29. Ep 471

    LatentSkill: From In Context Textual Skills to In Weight Latent Skills for LLM Agents

    Exploring LatentSkill, a framework that turns textual agent skills into weight-space LoRA adapters, cutting prompt overhead while keeping modularity and composability. Cody digs into the hypernetwork design and trade-offs; Justy asks what shipping this looks like and who’d actually adopt it.

  30. Ep 469

    Automate Writing Your LLM Prompts | Towards Data Science

    Cody and Justy dissect the argument that manual prompt engineering is obsolete in production, focusing on the DSPy framework's claim to automate prompt optimization. Cody challenges the 'black box' nature of auto-generated prompts and the computational cost, while Justy argues this shifts the developer role from 'prompt writer' to 'system architect,' solving the fragility of hard-coded strings. They land on a nuanced verdict: DSPy is powerful for stable, high-volume tasks but overkill for exploratory prototyping.

  31. Ep 466

    Rethinking Continual Experience Internalization for Self Evolving LLM Agents

    Jingwen Chen et al. diagnose why iterative experience internalization fails in LLMs and prescribe a three-part fix—principle-level granularity, step-wise injection, off-policy context-distillation—that turns capability collapse into compounding improvement.

  32. Ep 460

    MemTrain: Self Supervised Context Memory Training

    Self-supervised framework MemTrain improves LLM context memory by training on unlabeled Wikipedia with coupled proxy tasks—masked reconstruction and memory recall—using GRPO. Achieves up to 17.67-point gains on long-horizon reasoning without task-specific labels.

  33. Ep 449

    SkillAdaptor: Self Adapting Skills for LLM Agents from Trajectories

    Justy and Cody discuss SkillAdaptor, a new training-free framework that pinpoints the exact step where an LLM agent fails, rather than blaming the whole session. They debate whether this 'step-level' precision makes it shippable for production agents today or just a clever research trick.

  34. Ep 439

    LongTraceRL: Learning Long Context Reasoning from Search Agent Trajectories with Rubric Rewards

    Justy and Cody unpack LongTraceRL, a paper that trains long-context reasoning models using realistic search-agent distractors and entity-level rubric rewards, with a short look at what would make it shippable.

  35. Ep 412

    MetaAgent X : Breaking the Ceiling of Automatic Multi Agent Systems via End to End Reinforcement Learning

    Justy and Cody discuss MetaAgent-X, a new paper proposing end-to-end reinforcement learning for multi-agent systems. They break down how it solves the 'frozen-executor ceiling' by jointly optimizing both the agent that designs the workflow and the agents that execute it. Cody explains the hierarchical rollout mechanism and stagewise co-evolution, while Justy explores what this means for production pipelines that currently rely on static prompts. They touch on the 21.7% performance gains, the reality of training stability, and whether this moves us from 'prompt engineering' to actual 'system engineering.'

  36. Ep 402

    Many Shot CoT ICL: Making In Context Learning Truly Learn

    Justy and Cody dig into a paper arguing that long-context chain-of-thought prompting behaves less like stuffing a prompt with relevant examples and more like teaching the model during inference. They unpack why many-shot tricks from classification break on reasoning, why semantic retrieval stops helping, and how the paper’s Curvilinear Demonstration Selection tries to order examples like a smooth mini-curriculum.

  37. Ep 386

    Teaching Claude why

    Cody and Justy dig into Anthropic's 'Teaching Claude Why' research — a post-training alignment paper showing that teaching an AI model ethical reasoning generalizes far better than just training it on correct behaviors. Cody is skeptical about how much of this is genuinely novel versus expected ML hygiene dressed up in alignment language. Justy pushes back with the product reality: if this actually closes the agentic blackmail problem, the downstream market implications are real.

  38. Ep 370

    HeavySkill: Heavy Thinking as the Inner Skill in Agentic Harness

    Justy and Cody dig into HeavySkill, a paper arguing that a lot of so-called agent harness magic is really a simpler inner pattern: generate multiple reasoning paths in parallel, then run a separate deliberation pass that compares and summarizes them. They unpack the memory-cache trick, why it can beat plain Best-of-N, where the gains seem to come from, and what this means for builders deciding between brittle orchestration and something more shippable.

  39. Ep 367

    From Context to Skills: Can Language Models Learn from Context Skillfully?

    Cody and Justy dig into Ctx2Skill, a self-evolving framework that turns long, dense context into reusable natural-language skills for language models. They talk through the core loop, the role of Challenger, Reasoner, Judge, and the replay trick that keeps the system from drifting into weird overfit territory, then land on what it means for product teams trying to ship context-heavy workflows.

  40. Ep 355

    Alibaba's HDPO cuts AI agent tool overuse from 98% to 2%

    Justy and Cody dig into Alibaba's HDPO and Metis, a training setup that teaches AI agents to stop calling tools by default. Cody likes the core idea because it separates accuracy from efficiency during reinforcement learning, but he questions how portable the benchmark win is. Justy pushes on why this matters for real products right now: users feel latency, teams feel API bills, and nobody wants an agent that opens a toolbox for a task it already knows how to do.

  41. Ep 333

    Build a Reinforcement Learning Powered Agent That Learns to Retrieve Relevant Long Term Memories

    Cody and Justy dig into a tutorial that trains an RL agent — using PPO via Stable-Baselines3 — to retrieve long-term memories more accurately than plain cosine similarity search. They debate whether the added complexity is justified, who actually needs this, and what it would take to move from a synthetic demo to something production-worthy.

  42. Ep 310

    LeWorldModel: Stable End to End Joint Embedding Predictive Architecture from Pixels

    Justy and Cody dig into LeWorldModel, a pixel-to-latent world model that tries to make JEPA training boring in the best way. The paper’s claim is simple but pretty important: you can jointly train the encoder and dynamics model from raw pixels without EMA tricks, stop-gradient, pretraining, rewards, or reconstruction, and still avoid collapse. They unpack the Gaussian latent regularizer, the autoregressive next-embedding prediction setup, and why a 15M-parameter model that runs on one GPU could matter more for builders than a flashier giant model.

  43. Ep 309

    6 Things I Learned Building LLMs From Scratch That No Tutorial Teaches You | Towards Data Science

    Justy and Cody dig into what actually changes when you stop calling an LLM API and start building pieces yourself: why fine-tuning tricks like RsLoRA matter, why RoPE won, where weight tying still makes sense, why Pre-LN became the default, and how KV cache buys speed by spending memory.

  44. Ep 301

    LongAct: Harnessing Intrinsic Activation Patterns for Long Context Reinforcement Learning

    Justy and Cody dig into LongAct, a paper about making long-context RL work better by updating only the attention weights tied to unusually large query and key activations. They unpack why that matters for long docs, agents, and multi-step reasoning, how the saliency-guided sparse updates map activation outliers back to specific weight rows, and why the reported gains across LongBench v2, RULER, and multiple RL algorithms suggest this could be more than a lab curiosity.

  45. Ep 300

    How to Fine Tune a Reasoning Model? A Teacher–Student Cooperation Framework to Synthesize Student Consistent SFT Data

    Episode 300 of Exploring Next digs into TESSY, a teacher-student data synthesis method for fine-tuning reasoning models without wrecking the smaller model’s existing style. The hosts unpack why direct teacher-generated supervised fine-tuning can actually make reasoning models worse, how TESSY alternates teacher-generated capability tokens with student-generated style tokens, and why that matters for anyone trying to ship smaller, cheaper reasoning systems for coding and other structured tasks.

  46. Ep 295

    Language models transmit behavioural traits through hidden signals in data Nature

    Exploring how language models transmit behavioural traits through hidden signals in data, and what this means for AI safety and development.

  47. Ep 277

    New framework lets AI agents rewrite their own skills without retraining the underlying model

    Episode 277 of Exploring Next covers Memento-Skills, a framework that enables AI agents to rewrite their own skills without retraining the underlying model, and its implications on autonomous agents and enterprise teams.

  48. Ep 270

    Continual learning for AI agents

    Continual learning for AI agents enables systems to improve over time by updating model weights, harnesses, and context. This episode explores the three distinct layers of agentic systems and how they can be applied in real-world scenarios.

  49. Ep 264

    Embarrassingly Simple Self Distillation Improves Code Generation

    Apple researchers developed Simple Self-Distillation (SSD), a technique that improves code generation models by fine-tuning them on their own raw outputs—no verification needed. The method improved Qwen3-30B-Instruct from 42.4% to 55.3% pass@1 on LiveCodeBench by reshaping token distributions to balance precision and exploration in code generation.

  50. Ep 248

    Expert Personas Improve LLM Alignment but Damage Accuracy: Bootstrapping Intent Based Persona Routing with PRISM

    Episode 248 dives into a USC research paper that solves the persona prompting puzzle: why expert personas sometimes help LLMs and sometimes hurt them. The team discovered that personas boost alignment tasks like safety and style but damage knowledge retrieval accuracy. They built PRISM, a self-bootstrapping system that routes queries to personas only when they actually help, using no external data.

  51. Ep 243

    Reasoning as Compression: Unifying Budget Forcing via the Conditional Information Bottleneck

    Chain-of-Thought prompting makes LLMs more accurate but expensive. This research reframes efficient reasoning as a compression problem, introducing a conditional information bottleneck approach that preserves essential reasoning while cutting cognitive bloat. Instead of naive length penalties, they use semantic priors based on token surprisal to compress reasoning traces intelligently.

    InferenceTrainingResearch Paper
  52. Ep 239

    Andrej Karpathy's new open source 'autoresearch' lets you run hundreds of AI experiments a night — with revolutionary implications

    Andrej Karpathy released autoresearch, a 630-line open source script that runs autonomous AI experiments overnight. The system creates an optimization loop where agents modify their own code, test hypotheses, and keep improvements—completing hundreds of experiments while humans sleep. Early adopters distributed the approach across networks and applied it beyond ML to marketing, suggesting a fundamental shift toward automated scientific discovery.

  53. Ep 238

    Autoresearch

    Karpathy's autoresearch lets AI agents autonomously experiment on machine learning models overnight — modifying code, training for 5 minutes, evaluating results, and iterating while you sleep. We dive into how it works, the clever design constraints, and why this might be the beginning of fully autonomous AI research.

  54. Ep 237

    Hyperagents

    Episode 237 explores Hyperagents, a breakthrough in self-improving AI that goes beyond just getting better at tasks to actually improving how it improves. Izzo examines the product potential while Boone breaks down the technical architecture that enables genuine metacognitive self-modification.

  55. Ep 219

    In Context Reinforcement Learning for Tool Use in Large Language Models

    Episode 219 explores In-Context Reinforcement Learning (ICRL), a breakthrough approach that teaches language models to use external tools without expensive supervised fine-tuning. Instead of requiring thousands of labeled examples upfront, ICRL uses few-shot prompting during reinforcement learning training, gradually reducing examples until the model masters tool use independently.

    TrainingAgentsResearch Paper
  56. Ep 217

    Google finds that AI agents learn to cooperate when trained against unpredictable opponents

    Google's Paradigms of Intelligence team discovered that AI agents naturally develop cooperative behaviors when trained against diverse, unpredictable opponents rather than being programmed with hardcoded coordination rules. This breakthrough offers a scalable alternative to traditional multi-agent frameworks by using standard reinforcement learning techniques to produce adaptive social behaviors through in-context learning.

  57. Ep 204

    Multi Agent cooperation through in Context co Player inference

    Exploring how sequence models can learn cooperation in multi-agent settings without hardcoded assumptions about other players, using in-context learning to naturally develop mutual cooperation strategies.

    AgentsTrainingResearch Paper
  58. Ep 202

    New agent framework matches human engineered AI systems — and adds zero inference cost to deploy

    Featured New agent framework matches human-engineered AI systems — and adds zero inference cost to deploy Ben Dickson February 18, 2026 Image credit: VentureBeat with ChatGPT Agents built on top of today's models often break with simple changes — a new library, a workflow modification — and require a human engineer to fix it. That's one of the most persistent challenges in deploying AI for the enterprise: creating agents that can adapt to dynamic environments without constant hand-holding.

  59. Ep 188

    DataChef: Cooking Up Optimal Data Recipes for LLM Adaptation via Reinforcement Learning

    DataChef: Cooking Up Optimal Data Recipes for LLM Adaptation via Reinforcement Learning Yicheng Chen 1,2 , Zerun Ma 2 , Xinchen Xie 2 , Yining Li 2† , Kai Chen 2† 1 Fudan University 2 Shanghai AI Laboratory Github : https://github.com/yichengchen24/DataChef Abstract In the current landscape of Large Language Models (LLMs), the curation of large-scale, high-quality training data is a primary driver of model performance. A key lever is the data recipe , which comprises a data processing pipeline to transform raw sources into training corpora.

  60. Ep 186

    Forge: Scalable Agent RL Framework and Algorithm

    Izzo and Boone dive deep into MiniMax's Forge framework — a production-scale RL system that trained their M2.5 model across hundreds of thousands of real-world agent scaffolds. They explore how Forge solves the fundamental trilemma of system throughput, training stability, and agent flexibility through architectural innovations like middleware abstraction, windowed FIFO scheduling, and prefix tree merging for massive computational efficiency.

  61. Ep 181

    MIT's new fine tuning method lets LLMs learn new skills without losing old ones

    MIT researchers developed self-distillation fine-tuning (SDFT), a technique that lets large language models learn new skills without forgetting old ones. By using a model's own in-context learning abilities as both teacher and student, SDFT solves the catastrophic forgetting problem that forces companies to maintain separate models for each task.

  62. Ep 179

    Outcome Accuracy is Not Enough: Aligning the Reasoning Process of Reward Models

    Deep dive into fixing deceptive alignment in reward models - why getting the right answer isn't enough if the reasoning is wrong, and how a hybrid training approach combining outcome accuracy with rationale consistency achieves state-of-the-art performance while solving a critical RLHF generalization problem.

  63. Ep 162

    Reinforcement World Model Learning for LLM based Agents

    The research introduces Reinforcement World Model Learning (RWML), a self-supervised method that enhances the capacity of large language models (LLMs) to navigate dynamic environments by learning action-conditioned world models. This addresses the limitations of LLMs in anticipating consequences and adapting to environmental changes, offering significant improvements in performance without relying on expert data.

  64. Ep 159

    Self Hinting Language Models Enhance Reinforcement Learning

    The paper explores how self-hinting language models can enhance reinforcement learning, particularly in overcoming the challenges faced when rewards are sparse. By introducing hints generated by the model itself during training, it reshapes the distribution of outcomes, allowing for better learning signals and improved performance on difficult prompts. This approach not only addresses existing limitations but also offers a novel way to adaptively guide the training process.

  65. Ep 156

    Latent Chain of Thought as Planning: Decoupling Reasoning from Verbalization

    This episode explores the innovative PLaT framework for reasoning in large language models, which introduces a two-part system separating reasoning from verbalization. It addresses the challenges of computational efficiency and interpretability, paving the way for more effective AI solutions across various domains. By discussing practical implications and potential use cases, we highlight how this research can transform the landscape of AI applications and improve user experiences.

    TrainingInferencePlatResearch Paper
  66. Ep 135

    LLM in Sandbox Elicits General Agentic Intelligence

    The LLM-in-Sandbox research presents a significant advancement in how large language models can autonomously explore and learn within a controlled environment. This enables them to tackle complex tasks across various domains without further training, enhancing their utility in real-world applications and offering new capabilities for developers and practitioners.

  67. Ep 105

    Adaptation of Agentic AI

    The research on agentic AI adaptation presents a significant step toward creating more efficient and reliable AI systems. By establishing a structured framework for both agent and tool adaptations, it provides developers with essential guidance for improving AI capabilities, addressing challenges, and enhancing performance. This dialogue explores the implications of this research and its practical applications in the field.

    AgentsTrainingResearch Paper
  68. Ep 91

    We Got Claude to Fine Tune an Open Source LLM

    The recent development allowing Claude to fine-tune open-source language models marks a significant step in democratizing AI training. It simplifies the complex process of model training, making it accessible to more users and applications, ultimately driving innovation in various sectors.

  69. Ep 72

    Streaming datasets: 100x More Efficient

    Hugging Face's recent advancements in streaming datasets promise to revolutionize machine learning by improving data handling efficiency by 100x, allowing developers to focus more on model training than on data preparation.

  70. Ep 68

    Metas Dreamgym Framework Trains AI Agents in a Simulated World to Cut

    Meta's DreamGym Framework is revolutionizing the way AI agents are trained by simulating complex environments, improving their efficiency and adaptability in real-world applications. This discussion explores how DreamGym works, its implications for various industries, and potential use cases that could redefine AI training.

  71. Ep 64

    Paper page Stabilizing Reinforcement Learning with LLMs: Formulation and Practices

    This dialogue explores the advances in reinforcement learning (RL) through the integration of large language models (LLMs), specifically focusing on a recent study that provides new strategies for stabilizing RL training. The conversation highlights practical implications, potential use cases, and the future of RL in practical applications.

    TrainingAgentsQwenResearch Paper
  72. Ep 62

    New Markovian Thinking Technique Unlocks a Path to Million Token AI

    In this episode, we dive into a groundbreaking technique in AI that dramatically expands the token processing capabilities of language models, paving the way for more advanced applications.

  73. Ep 57

    Paper page Agent Learning via Early Experience

    This dialogue explores innovative strategies in agent learning through early experience, discussing their implications, practical applications, and limitations in real-world scenarios.

  74. Ep 55

    Self Improving Language Models Are Becoming Reality with Mits Updated Seal

    The emergence of self-improving language models, like MIT's SEAL, could revolutionize how AI processes and generates human-like text, increasing efficiency and adaptability in various applications.

  75. Ep 26

    Agentic Context Engineering Ace Self Improving LLMs via Evolving Contexts Not Fine Tuning

    Tech News AI Paper Summary Technology Artificial Intelligence Editors Pick Machine Learning Staff Agentic Context Engineering (ACE): Self-Improving LLMs via Evolving Contexts, Not Fine-Tuning By Asif Razzaq - October 10, 2025 TL;DR : A team of researchers from Stanford University, SambaNova Systems and UC Berkeley introduce ACE framework that improves LLM performance by editing and growing the input context instead of updating model weights. Context is treated as a living “playbook” maintained by three roles— Generator, Reflector, Curator —with small delta items merged incrementally to avoid brevity bias and context collapse.

  76. Ep 13

    The Three Ages of Data Science: When to Use Traditional Machine Learning, Deep Learning, or an LLM (Explained with One Example) | Towards Data Science

    Data Science The Three Ages of Data Science: When to Use Traditional Machine Learning, Deep Learning, or a LLM (Explained with One Example) A practical use case to describe how the data scientist job changed across three generations of machine learning Piero Paialunga Nov 11, 2025 10 min read Share Photo by Markus Spiske on Unsplash One of the best songs of the universe (made by one of the most iconic singers ever) says this: Wish I could go back And change these years I’m going through changes Black sabbath – Changes This song is incredibly powerful and talks about how life can change right in front of you so quickly. That song is about a broken heart and a love story.