Topic

Machine Learning Operations (MLOps)

All digests tagged Machine Learning Operations (MLOps)

Putting Claudes "AI Slop" Solution to the Test thumbnail

· 7:01

Putting Claudes "AI Slop" Solution to the Test

The video provides a critical deep dive into the current state of AI product development, focusing heavily on the necessity of rigorous, data-driven evaluation (Evals) over relying on vendor demos or vague prompts. The speaker critiques common AI pitfalls, such as 'mannered prose' and the use of 'slop' in system prompts. For build engineers, the core message is to build small, realistic evaluation datasets and test candidate models against specific, failure-critical use cases (e.g., OCR, structured output) rather than relying on general benchmarks.

Key takeaways

  1. Prioritize Specificity Over Flowery Language 2:30

    The speaker critiques 'mannered prose' (e.g., 'the point earns its keep'), arguing that AI output should use direct, literal statements rather than metaphors or flourish, which are imprecise and confuse the reader. [00:02:30]

  2. Build Custom Evaluation Datasets (Evals)

    To accurately compare AI models, one must create a small evaluation set using data realistic to the specific use case (e.g., tables, scanned images, documents with stains). Leaderboards and vendor demos are insufficient because they do not test against proprietary failure modes. [00:08:20]

  3. System Prompts Must Be Precise 3:20

    When using system prompts or in-context examples, the goal should be to guide the model toward a specific, measurable output format (e.g., structured JSON with named fields) rather than relying on general instructions. [00:03:20]

Watch on YouTube Full article

How Lyft Increased Its Agent Resolution Rate by 16% with LangSmith and LangGraph thumbnail

· 3:41

How Lyft Increased Its Agent Resolution Rate by 16% with LangSmith and LangGraph

Lyft addressed the challenge of scaling its customer support agent stack by replacing brittle, deterministic agents with a meta-agent architecture built on LangGraph and LangSmith. This new self-serve platform allows non-engineering personnel (PMs and ops) to deploy new agents via simple configuration and prompting, drastically reducing agent build time from six months to one to two weeks. This accelerated iteration cycle resulted in a 16% increase in the customer resolution rate.

Key takeaways

  1. Shift to Self-Service Agent Platform 2:25

    The team created a platform enabling PMs and ops to build and ship agents using domain knowledge and natural language prompting, minimizing the need for code changes (merely a config change).

  2. Architectural Improvement via Meta-Agent 3:35

    The system utilizes a meta-agent where all sub-agents are registered dynamically as nodes in the meta-agent, simplifying the composition and deployment of new agents.

  3. Significant Operational Gains

    The agent build time was reduced from six months to one to two weeks, allowing engineers to focus on complex, foundational improvements while increasing the overall resolution rate by 16%.

Watch on YouTube Full article

Stop Picking Embedding Models Off The MTEB Leaderboard thumbnail

· 21:55

Stop Picking Embedding Models Off The MTEB Leaderboard

Selecting embedding models requires considering factors beyond MTEB leaderboard scores, including operational cost, query latency, and hardware constraints. The talk details advanced techniques like model/vector quantization (e.g., int8 on CPU, FP16 on GPU), utilizing Matryoshka dimensions, and implementing a two-stage ranking architecture: a cheap first phase followed by an expensive reranker. Proper fine-tuning using tools like Vespa Embed is critical for maximizing performance, while developers must be wary of metric pitfalls like the NDCG blind spot.

Key takeaways

  1. MTEB scores are insufficient for production planning

    The leaderboard does not account for operational costs, query latency, or hardware-specific quantization requirements. Performance depends heavily on how fast the model generates vectors and how efficiently distance metrics (cosine vs. dot product vs. Hamming) are computed.

  2. Quantization must match deployment hardware 3:36

    For CPU deployment, int8 quantization is recommended for speed while retaining most precision. For GPU, using an FP16 variant of the model is significantly cheaper and faster than running a native int8 model.

  3. Implement cheap first phase + expensive reranker

    A scalable search system should use a low-cost initial ranking (e.g., binary vectors with Hamming distance) for millions of documents, reserving more computationally expensive methods (like full float embeddings or cross-encoders) only for the top results.

  4. Be cautious of metric blind spots

    The NDCG metric can fail to reflect true search improvement if not all documents in the corpus are rated. Teams must ensure their relevance function is consistently applied across all documents being evaluated.

Watch on YouTube Full article

AI models can now help run physical science experiments thumbnail

· 11:11

AI models can now help run physical science experiments

The Model Hardware Standard (MHS) is introduced as a novel framework enabling AI agents to safely and autonomously operate complex physical scientific equipment. This standard addresses the critical bottleneck in research—the time spent building and debugging experiments—by allowing large language models (LLMs), such as Claude, to interact with diverse hardware systems (e.g., microscopes, lab robotics) through standardized interfaces. Demonstrations show AI performing sophisticated tasks like image analysis, sample tracking, and closed-loop optimization in drug discovery, fundamentally accelerating scientific research.

Key takeaways

  1. Model Hardware Standard (MHS) 3:50

    MHS is a new standard developed by Anthropic to allow AI agents to communicate with and control physical equipment from various manufacturers, solving the problem of incompatible device languages. This enables general-purpose AI interaction with the physical world.

  2. Automated Experimentation 5:05

    AI can now run complex scientific experiments from scratch (e.g., operating a custom microscope) in minutes, tasks that previously required weeks of manual setup and debugging.

  3. Closed-Loop Optimization 9:00

    In pharmaceutical applications, AI can execute operations (e.g., aspirating samples), interpret the data (e.g., detecting bubbles), and automatically adjust parameters to improve the overall experiment in a closed loop.

Watch on YouTube Full article

Why Great Models Fail: Lessons From 9 Years of Deploying ML Models - Megan Robertson thumbnail

· 59:14

Why Great Models Fail: Lessons From 9 Years of Deploying ML Models - Megan Robertson

The talk outlines critical lessons from deploying ML models in production, arguing that model accuracy alone is insufficient for real-world success. Success requires rigorous project scoping, continuous monitoring infrastructure, and ensuring the model's value proposition (Value Ad) significantly outweighs its maintenance cost and potential risks. Key failure points include minimal stakeholder consultation, ignoring data drift, and failing to plan for inevitable changes in the operational environment.

Key takeaways

  1. Stakeholder Value is Paramount 13:20

    The model's value must be quantifiable (KPI) and its contribution must outweigh the cost of maintenance. Stakeholders must guide the project scope, preventing engineers from building technically cool but commercially irrelevant solutions.

  2. Scope Definition is a Multi-Step Process 23:20

    Proper scoping requires defining who is served (stakeholders/end users), clearly articulating the problem, understanding constraints and risks, identifying possible solutions (MVP approach: crawl, walk, run), and planning maintenance.

  3. ML Models Require Continuous Monitoring 58:20

    Since models are trained on a single point in time, they must be monitored for performance degradation. Strategies include tracking data issues (e.g., distribution changes), feature drift, and model-specific metrics (e.g., Mean Absolute Error, F1 scores).

Watch on YouTube Full article

Morgan Stanley's ALPHALAB: Multi-Agent Research Across Optimization Domains — Brendan Rappazzo thumbnail

· 20:07

Morgan Stanley's ALPHALAB: Multi-Agent Research Across Optimization Domains — Brendan Rappazzo

Morgan Stanley's AlphaLab is a multi-agent research system designed to automate quantitative finance research by managing the entire experimental lifecycle. Unlike simple code generation, AlphaLab accepts a problem in plain language and autonomously handles hypothesis formation, backtesting setup, cluster job submission (using tools like Slurm), statistical testing, and iterative refinement. The core innovation lies in its focus on building proprietary, verifiable evaluation environments—treating them as critical data inputs—allowing the system to self-improve and encode deep enterprise knowledge.

Key takeaways

  1. Full Research Automation Cycle

    AlphaLab operates in three phases: 1) Research (building context/hypotheses), 2) Evaluation Building (creating robust backtests, involving multiple critic agents to prevent forward leakage), and 3) Mass Experimentation. This allows the system to move from a natural language goal to a suite of trained models.

  2. Architecture: Strategist and Workers 15:36

    The process is managed via a Kanban/Jira-like board. A 'Strategist' agent proposes experiments, which are then assigned to 'Worker' agents responsible for writing code, configuring Slurm jobs (e.g., requiring 4 H100s), submitting the job, and performing postmortem analysis.

  3. The Value of Verifiable Environments

    The system's robustness hinges on building custom evaluation environments (evals) that mimic a private Kaggle competition. This strict format, which includes held-out validation sets, is crucial for measuring performance and encoding proprietary enterprise knowledge.

  4. Self-Improving Meta-Harness

    The ultimate goal (AlphaLab 2.0) is a self-improving system where the LLM performs meta-optimization, analyzing results and improving the harness itself, rather than just executing tasks within it.

Watch on YouTube Full article

State of Data — Sean Cai, Independent / State of Data thumbnail

· 18:22

State of Data — Sean Cai, Independent / State of Data

The data market is undergoing a structural shift from relying on sheer quantity of annotated images (the 'least interesting part') to capturing high-quality, process-based expertise. Data's value lies in the trajectory and reasoning trace—not just the final output. The speaker argues that while model improvement requires balancing compute, data, and talent, data remains the most underfunded leg. Successful companies must pivot from being mere 'data businesses' to becoming infrastructure providers (neo-labs) that build robust pipelines into real-world work.

Key takeaways

  1. Data Shift: From State to Process 2:08

    The most valuable data is process-based data—the reasoning trace or sequence of decisions, rather than state-based data (e.g., rows in an ERP). Type one data (pure capture of real workflows like GitHub commits) offers superior realism compared to type two data (contrived examples manufactured by experts).

  2. The Importance of Verifiability 5:50

    A task's ease of training is proportional to its verifiability, which depends on three axes: asymmetry of verification (decomposability into checkable steps), veracity of verification (consensus on what 'correct' means), and proliferation of verification (availability of fresh examples). Coding scored highly because it solved all three.

  3. The Builder's Moat is the Pipeline 13:10

    For data companies, the durable value accrues to the services and application layer of actual work. The true moat for builders is not the raw data itself, but the pipeline into real-world work and the infrastructure required to keep retraining as models improve.

Watch on YouTube Full article

Everything Is a Rollout — Alex Shaw + Ryan Marten, Terminal-Bench, Harbor, Laude Institute thumbnail

· 21:11

Everything Is a Rollout — Alex Shaw + Ryan Marten, Terminal-Bench, Harbor, Laude Institute

Alex Shaw introduces Harbor, a framework designed for evaluating and optimizing AI agents. The talk argues that agent development should be viewed through the lens of machine learning rather than traditional software engineering. This requires treating agent performance as a 'blackbox artifact' and managing it via empirical evaluation—a process formalized by 'rollouts.' Harbor provides the necessary infrastructure (sandboxes, standardized environments) to execute these complex evaluations in parallel.

Key takeaways

  1. Agent Development vs. Software Engineering 5:15

    Unlike traditional software engineering where behavior is predictable before execution, agentic coding and AI agents are best treated as blackbox artifacts whose performance requires empirical evaluation (e.g., 'Generated code is best treated as a blackbox artifact').

  2. The Role of Rollouts in Agent Evaluation 10:30

    Agent evaluation relies on 'rollouts' within sandboxed environments. This process involves passing the sandbox to the agent, collecting a trajectory, and then passing it to a verifier which produces rewards. Harbor standardizes this universal process.

  3. Harbor as an Interoperable Standard 12:20

    Harbor is presented as a common language and open-source framework for specifying agentic environments, allowing interoperability across different agents, models (e.g., GPT 5.5), and sandboxes to maximize data velocity.

  4. Diverse Evaluation Use Cases 17:30

    Evaluation can be highly specialized, including assessing how well agents build products (e.g., RampBench), how they use a product's headless mode, or automating internal processes.

Watch on YouTube Full article

Brian Douglas - The beginners guide to training AI on your own code - AI Native DevCon June 2026 thumbnail

· 31:44

Brian Douglas - The beginners guide to training AI on your own code - AI Native DevCon June 2026

This talk outlines a closed-loop system for training AI agents using proprietary code execution traces. The core concept involves capturing every agent interaction (telemetry) via an open-source proxy (tapes.dev), structuring this data into a content-addressable Merkle DAG. This raw trace data is then processed by streaming tools like Kafka and Flink SQL to detect anomalies, which feeds back into the agent's next run—creating a 'self-healing loop.' The captured traces are used for supervised fine-tuning (SFT) or Direct Preference Optimization (DPO) to embed learned skills directly into local models, eliminating reliance on external training data.

Key takeaways

  1. Closed-Loop Agent Training 3:50

    Agents generate data by running in an environment; this telemetry is captured and used immediately for model improvement. This creates a self-healing infrastructure loop, allowing agents to learn from failures (anomalies) and successes.

  2. Data Capture Infrastructure 10:30

    The open-source proxy, tapes.dev, intercepts LLM API calls to build a content-addressable Merkle DAG of every conversation turn, requiring zero instrumentation.

  3. Anomaly Detection and Feedback 2:00

    Streaming pipelines (Kafka/Flink SQL) run continuous anomaly detection on session data (e.g., stuck loops, token spikes). Alerts generated by Flink are read by the agent before its next execution, enabling self-correction.

  4. Knowledge Transfer Methods 22:00

    Captured traces can be used for Specialized Fine-Tuning (SFT) or Direct Preference Optimization (DPO). SFT embeds skills into the model, while DPO uses preference data derived from successful vs. failed sessions.

Watch on YouTube Full article

The Unreasonable Effectiveness of Separating the Task from the Model — Maxime Rivest, DSPy thumbnail

· 17:11

The Unreasonable Effectiveness of Separating the Task from the Model — Maxime Rivest, DSPy

The talk introduces DSPy, an open-source Python framework designed to bring software engineering principles—reusability, composability, and testability—to AI programs. The core philosophy is the 'unreasonable effectiveness of separating the task from the model' by defining tasks strictly through a programmatic interface called the Signature. This approach allows developers to focus on the business logic (the contract) while keeping the underlying implementation flexible for experimentation with different models, weights, and techniques.

Key takeaways

  1. The Power of the Signature

    By defining a task's inputs and outputs (the Signature) first, developers create an abstraction layer that allows them to swap out underlying implementations (models, prompts, etc.) without changing the core workflow. This provides significant agility for AI engineering.

  2. Three Pillars of Task Specification 8:00

    To fully specify an AI task, DSPy advocates using three components: 1) Instructions (what should happen), 2) Constraints/Code (what must happen, enforced by code like self-recheck or chaining), and 3) Evaluation Metrics (what good looks like).

  3. Future Direction: Automation and Learning 10:35

    DSPy is evolving toward automating implementation details. Future versions, including DSPy 4.0, aim to allow models to write code beneath a signature and enable programs to learn directly from user interactions while respecting the defined inputs/outputs.

Watch on YouTube Full article

Poolside’s Model Factory, Laguna S, Open Models, and the Race to AGI — Eiso Kant, Poolside AI thumbnail

· 1:56:13

Poolside’s Model Factory, Laguna S, Open Models, and the Race to AGI — Eiso Kant, Poolside AI

The discussion centers on the engineering systems required for achieving AGI, arguing that model building is fundamentally a process of infrastructure and data management rather than pure intelligence. Poolside details its 'Model Factory,' an end-to-end system enabling rapid iteration (from six months to eight weeks) by treating model development as an industrialized process. Key technical advancements include streaming data directly into training, ensuring perfect reproducibility via immutable data layers, and leveraging agentic systems that write code and manage jobs. The consensus emphasizes that future progress relies on improving compute efficiency through low-precision methods (e.g., FP8) and focusing on behavioral traits like persistence and reasoning over sheer model size.

Key takeaways

  1. Model Building is 90% Engineering 20:30

    The core challenge in foundation model development lies in building robust, scalable infrastructure. The Model Factory manages the entire lifecycle—from raw data ingestion and filtering to large-scale distributed training and post-training refinement.

  2. The Importance of Reproducibility 26:40

    Achieving scientific rigor requires treating data as an immutable layer, versioning code, and ensuring perfect reproducibility. This allows researchers to track and trace every experiment down to the single token.

  3. Shift from Tool Calls to Code Writing 29:10

    The industry is moving beyond simple tool calls (e.g., stuffing 50 tools in a system prompt) toward models writing complex, conditional code scripts that interact with an internal virtual machine environment.

  4. Focus on Behavior and Efficiency 1:00:00

    The gains seen in smaller models (like Laguna S) come less from raw intelligence and more from improved behaviors, such as persistence, verification, and backtracking. This suggests that the peak performance for knowledge work may be at much lower parameter counts than previously assumed.

Watch on YouTube Full article

CoreWeave ARIA: The autoresearch loop for continuous improvement thumbnail

· 5:16

CoreWeave ARIA: The autoresearch loop for continuous improvement

CoreWeave ARIA is an AI Research and Iteration Agent designed to automate the full autoresearch loop for continuous model and agent improvement. The demonstration shows how ARIA autonomously forms hypotheses, analyzes prior run results (including raw system metrics and plots), sets filters, and executes new training jobs via Weights & Biases Launch, allowing human users to focus on high-level problem definition.

Key takeaways

  1. Autonomous Research Loop

    ARIA autonomously manages the research process by forming hypotheses, running experiments, evaluating results, and executing optimal next actions without constant human intervention. This capability helps models and agents improve continuously.

  2. Run Analysis and Filtering 1:44

    ARIA can analyze complex run data—including plots, tables, and raw system metrics—to determine what worked best. It can also set UI filters based on previous sweeps (e.g., setting a filter for 'auto research runs').

  3. Parallel Experimentation 1:18

    Users can run multiple ARIA instances in parallel to accelerate the workflow, allowing simultaneous management of different research tracks (e.g., running two distinct ARIA variants).

Watch on YouTube Full article