惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
S
SegmentFault 最新的问题
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
美团技术团队
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
量子位
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
博客园 - 叶小钗
月光博客
月光博客
P
Proofpoint News Feed
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Evaluate the whole setup, not just the model: a practical...
visionLMs · 2026-06-25 · via DEV Community

visionLMs

This is a reworked, shorter version of a research note we wrote on the VideoDB Labs blog. I work on the team at VideoDB. The original post and the open source repo are linked at the bottom, and this article is set to canonical back to the original.

The mistake: benchmarking the model in the abstract

Most "which VLM is best" comparisons answer a question almost nobody actually has. For a real video workflow the output does not depend on the model alone. It depends on the segmentation strategy, frame sampling, resolution, the prompt, the model, any reasoning budget, latency limits, and whatever post-processing runs after. Swap any one of those and the numbers move.

So the unit you compare is not model A vs model B. It is configuration A vs configuration B, on your data, at the quality, latency, and cost you can actually support.

Define the task before touching the stack

Retrieval, monitoring, summarization, moderation, metadata extraction, and Q&A are different tasks. They produce different outputs and tolerate different errors. Before picking a model, write down four things:

  • What the system produces (a ranked clip list, an alert, a summary, an answer, structured metadata).
  • What success looks like in practice, including whether a miss or a false alarm is the more expensive failure.
  • What signal the task depends on (static frames, motion, speech, scene changes, on-screen text).
  • What constraints it runs under (real time, batch, low cost, quality first).

Those answers tell you where to start. Short-lived actions push you toward denser sampling and more frames. Mostly static video lets you get away with lighter extraction. Latency or cost pressure means you put the cheap configurations in the benchmark early.

Build the dataset around the production decision

The dataset is the center of the eval. Public benchmarks are fine for a sanity check, but they do not answer the question teams actually care about, which is whether this works on their footage.

A useful set includes normal cases, hard cases, near-miss negatives, boring stretches, and the failure modes you already know about. Surveillance data should include occlusion, low light, motion blur, empty scenes, and crowded scenes. Meeting data should include crosstalk, screen shares, poor audio, and long static sections. Do not build the set around what is easy to label. Build it around the decision you need to make.

Score the task, not a single number

For retrieval, the question is whether the right moment shows up, how high it ranks, and whether similar-but-wrong clips stay out. For alerting, whether the alert stream is usable. For summarization, whether it is factually correct and avoids inventing things. For metadata extraction it is often better to score field by field. Decide early whether missed events or false alarms cost you more, because that is a product choice, not an academic one.

Keep every result traceable

A benchmark is not just a score. You want to answer what exact input produced this output, which configuration generated it, how it was scored, and what changed between two runs. Keeping the per-item context (video id, scene start and end, frame URLs, extraction config, prompt, model, output, scores) means a regression points you at a cause instead of a mystery. We use Langfuse for this layer in the repo, but the principle holds with any tracing setup.

Use the output to make a decision

The goal is not a leaderboard. By the end of a run you should know which configuration becomes the default path, which lighter setup is good enough for easy cases, which stronger setup to reserve for hard slices, and where the system still fails. And when quality is short, the first fix is often more signal into the model (denser sampling, more frames, better scene boundaries) before reaching for a bigger model.

Run it on your own data

We open sourced the pipeline so you can run the same process on your own videos, define your own metrics, swap in your own models, and compare configurations without rebuilding the stack.

Happy to answer questions about the workflow or the tradeoffs in the comments.