Back to Feed
Agents / Benchmarks & Evals

Improving Video Analysis for AI Agents

Original: Video-DeepResearch: Towards the Next-Generation Multimodal Deepresearch Agent

Listen to the summary

Uses a voice available on your device

Audio options
On this page

Key Takeaways

  • The 35B-A3B model achieved 64.0% accuracy on multi-hop VQA tasks, outperforming Claude-4.5-Sonnet and GPT-5.
  • The framework implements a decoupled perception-exploration pipeline that prevents the agent from skipping visual analysis in favor of text search.
  • The team released VideoDR-Bench, a new 200-instance human-AI collaborative benchmark for evaluating complex video research.
  • A two-stage data engine was used to generate 30K video-grounded QA pairs and 7K execution trajectories for training.

Summary & Methodology Analysis

The paper introduces a Video-DeepResearch framework designed to solve modality bias and parametric knowledge leakage, where agents incorrectly prioritize textual web search over necessary visual processing. To enforce visual grounding, the authors designed a decoupled perception-exploration pipeline with stage-wise tool unlocking. This ensures the agent processes video frames through specific tools like Select_Keyframe and Crop_Search before it is permitted to invoke web exploration tools like Search and Visit. This architectural constraint prevents the agent from relying on its internal parametric knowledge, which refers to the static weights of the neural network, instead of actively querying external visual data.

Interactive System Flowchart

Click diagram to expand and zoom

Cross-Examination & FAQs

A deeper dive clarifying mechanics, constraints, and baseline evaluations.

Q1. What is the primary contribution of this research?

The authors created an agent framework that improves how models perform deep research on video content by ensuring they use visual tools before relying on text-based web search.

Q2. How does the agent handle visual information?

It utilizes specific tools called Select_Keyframe and Crop_Search to interact with visual data before proceeding to web-based information retrieval.

Q3. Did this agent perform better than existing models?

Yes, the Video-DeepResearch-35B-A3B model reached 64.0% accuracy, surpassing Claude-4.5-Sonnet, GPT-5, and Gemini 2.5 Pro.

Q4. What is the role of the two-stage data engine?

The engine generates 30K video-grounded QA pairs and 7K execution trajectories to train and align the agent for complex research tasks.

Q5. What is the purpose of VideoDR-Bench?

It serves as a 200-instance human-AI collaborative benchmark specifically designed for testing multi-hop visual question answering performance.

Q6. What techniques were used to align and refine the model policy?

The team utilized Supervised Fine-Tuning (SFT), which is a process of training the model on labeled data to follow instructions, and Group Relative Policy Optimization (GRPO), which is a method to refine agent behavior through comparative scoring.

Q7. Does the paper describe any hardware or cost requirements?

The paper notes that the proposed framework requires significant computational resources for data synthesis and model training, though it does not provide specific dollar costs or hardware configurations.

Q8. How did the 30B-A3B variant compare to baseline models?

It achieved 59.3% accuracy, keeping it competitive with Claude-4.5-Sonnet.

Q9. What specific problems with agents does this address?

It targets modality bias, where agents ignore visual tools, and parametric knowledge leakage, where models ignore live data to rely on their pre-trained memory.