发布于 更新于 Published Updated

What counts as visual evidence?

A video can look convincing while violating a task rule. An answer can be correct without using the video. An evaluator can write a fluent explanation without making its judgment correct. These are different problems, and they need different checks.

I coauthored VidGround, VideoScore2, VGI-Bench, Structured Defect Grounding (SDG), and MedClaw. This guide connects their research questions; it does not combine their scores or claim that one system solves all five problems.

Five questions, different evidence

Work What is being examined? The question to ask
VidGround Video question-answering data Did answering actually require seeing the video?
VideoScore2 Evaluation of generated videos Which quality dimension supports the score?
VGI-Bench Reasoning through generated frames Is the evolving process valid, not just the final image?
SDG Defects in text-to-image outputs Where is the defect, and what makes it a defect?
MedClaw Question answering over long surgical recordings Which observations across time support the answer?

1. VidGround: did the model need to watch?

VidGround finds that text cues alone can answer many questions in the video benchmarks and post-training datasets it studies. It curates questions that require visual grounding and examines their use in post-training. This makes the training data—not just the optimization algorithm—a central part of the evidence. A useful reading question is whether improvements also survive evaluation that controls for text-only shortcuts. Read the paper.

2. VideoScore2: what does the score mean?

VideoScore2 evaluates visual quality, text-to-video alignment, and physical/common-sense consistency, with explanatory rationales. It uses human-annotated VideoFeedback2 data and supervised training followed by GRPO. These dimensions help separate a good-looking clip from one that follows its prompt. My caution is that an explanation remains a model output: inspect agreement with human judgments and performance beyond the training distribution, not only the fluency of the rationale. Read the paper · Project.

3. VGI-Bench: was the process valid?

VGI-Bench tests visual reasoning expressed through generated video. Its task design considers inputs compatible with video models, evolving processes, and difficulty that is challenging but partly feasible. A plausible final frame alone is insufficient. The paper analyzes failure modes, sensitivity to input conditions, and limits of correction during denoising. My takeaway is to inspect the transitions that make an outcome valid, not to use visual polish as a substitute for task success. Read the paper.

4. SDG: which defect are we discussing?

SDG represents each defect with a location, type, reason, and importance. It introduces SDG-30K and SDG-Eval, then uses predicted defect sets to derive spatial rewards for alignment. This connects localized diagnosis to feedback, rather than compressing every failure into one scalar. The question for a reader is whether a stated reason actually refers to the marked region and the intended requirement. Read the paper · Code · Dataset page.

5. MedClaw: where is the temporal evidence?

MedClaw separates a text-only planner from frozen vision tools that inspect surgical video. It develops retrieval skills through a gradient-free, validation-reward-gated loop. Its benchmark includes long neurosurgery recordings and a held-out public lecture-video split. Here, the useful object to inspect is the evidence-gathering trace: what was viewed, what was revisited, and how it supports a before/after claim. This is research on video reasoning, not evidence of clinical deployment or patient benefit. Read the paper · Project.

A reading checklist, not a combined leaderboard

For a visual AI result, I would first ask:

  1. Evidence: could the same answer come from text alone, and which frames or regions matter?
  2. Criterion: are we judging appearance, prompt alignment, a valid process, or a temporal claim?
  3. Validation: what independent reference checks the model’s explanation or score?
  4. Transfer: which conclusions hold beyond the data, task conditions, and feedback used during development?

This checklist is my synthesis, not a new experiment or an evaluation protocol shared by the five papers. Their datasets, outputs, and scoring rules differ. Choose the paper that matches the failure you need to understand, then inspect its examples, protocol, and limitations.

Resource boundary, checked September 6, 2026: SDG has source-linked public code, dataset, and checkpoint repositories. Their licenses differ; consult the artifact cards rather than applying the code license to everything. We checked pages and file listings, not dataset completeness or reproduced results. The MedClaw project still labels code as coming soon; its private neurosurgery split must not be treated as public footage. No dataset images or model weights were downloaded for this note.

Continue with the full publication list or the self-development evaluation guide.

Prepared with AI assistance and checked against the linked public papers and project pages on September 6, 2026. This article reproduces no paper figures, experimental tables, or patient images. Shared authorship is disclosed above; the questions and cautions are editorial interpretation, not additional measured results.

看起来合理,不等于视觉证据成立

视频可以很逼真,却违反任务规则;回答可以正确,却根本没用上视频;评测器可以解释得流畅,却仍判断错误。这些不是同一个问题,需要分别检查。

我参与了 VidGround、VideoScore2、VGI-Bench、Structured Defect Grounding(SDG)与 MedClaw。本文把它们的研究问题连起来,不把不同分数拼成排行榜,也不声称某个系统已经解决所有问题。

五个问题,对应不同证据

工作 检查对象 应该追问什么?
VidGround 视频问答数据 答对真的需要看视频吗?
VideoScore2 生成视频的评测 哪个质量维度支持这个分数?
VGI-Bench 生成帧表达的推理 过程是否有效,而不只是最后一帧合理?
SDG 文生图输出的缺陷 缺陷在哪里,为什么算缺陷?
MedClaw 长手术视频问答 哪些跨时间观察支持这个回答?

1. VidGround:模型真的需要看吗?

VidGround 在所研究的视频评测和后训练数据中发现,许多问题仅靠文本线索就能回答。它筛选真正需要视觉信息的问题,并研究如何用于后训练。因此,训练数据本身与优化算法一样,是必须检查的证据。阅读结果时可以追问:控制文本捷径后,改善是否仍然成立?阅读论文

2. VideoScore2:分数究竟代表什么?

VideoScore2 分开评估视觉质量、文本与视频对齐、物理与常识一致性,并给出解释;训练使用人工标注的 VideoFeedback2,经过监督学习与 GRPO。这些维度帮助区分“好看”和“遵循提示”。我的提醒是:解释仍然是模型输出,应检查它与人工判断的一致性及训练分布之外的表现,不能只看文字是否流畅。阅读论文 · 项目页

3. VGI-Bench:过程是否有效?

VGI-Bench 检查通过生成视频表达的视觉推理。任务设计考虑输入是否适配视频模型、变化过程是否有效,以及难度是否有挑战但仍部分可解。最后一帧看起来合理并不够;论文还分析失败模式、输入条件敏感性与去噪阶段纠错的局限。我的启发是:检查使结果成立的状态变化,不用画面的精致程度代替任务成功。阅读论文

4. SDG:我们说的是哪一个缺陷?

SDG 用位置、类型、原因与重要性描述每个缺陷,介绍 SDG-30K、SDG-Eval,并将预测缺陷集合用于构造空间奖励。它把局部诊断与反馈连起来,而不是把所有失败压缩成一个分数。读者可以进一步核对:给出的原因是否真的对应标记区域和原本要求?阅读论文 · 代码 · 数据集页面

5. MedClaw:时间证据在哪里?

MedClaw 将纯文本规划器与查看手术视频的冻结视觉工具分开,通过无梯度、验证奖励把关的循环提炼检索技能。其研究评测包括长神经外科录像和独立的公共讲解视频测试分片。值得检查的是取证轨迹:看过什么、重新查看过哪里,这些观察怎样支持“之前/之后”的说法?这里研究的是视频推理,不代表已经临床部署或证实患者收益。阅读论文 · 项目页

一份阅读检查单,而不是统一排行榜

面对视觉 AI 的结果,我会先问:

  1. 证据: 不看视频能否答出同样结果?哪些帧或区域真正重要?
  2. 标准: 检查的是外观、提示对齐、有效过程,还是时间关系?
  3. 核验: 用什么独立参考检查模型的解释或分数?
  4. 迁移: 超出开发时的数据、任务条件和反馈后,哪些结论仍成立?

这是我的综合解读,不是新实验,也不是五篇论文共用的评测协议。它们的数据、输出和评分规则不同。先根据要理解的失败类型选择论文,再看具体例子、协议与局限。

资源边界,核对于 2026 年 9 月 6 日: SDG 已有原文关联的公开代码、数据集和模型仓库,但不同工件的许可不同,不能一律套用代码许可。本次核查页面与文件列表,没有验证数据集完整性或复现结果。MedClaw 项目仍标记代码即将发布,其神经外科私有分片不能当作公共录像。本次撰写未下载数据集图片或模型权重。

后续可浏览全部论文,或阅读 Agent 自我改进评测导引

本文经 AI 辅助整理,并于 2026 年 9 月 6 日对照所链接公开论文与项目页核验。没有转载论文图片、实验表格或患者影像。共同作者关系已在开头披露;阅读问题与提醒是编辑性解读,不是额外测量结果。