Research
EgoThinker: Unveiling Egocentric Reasoning with Spatio-Temporal CoT
Overview Research area: Computer vision, specifically multimodal large language models (MLLMs) applied to egocentric (first-person) video understanding and reasoning. Technical level: Intermediate. Re
- arXiv
- 2510.23569
- Published
- 2025-10-27
- Authors
- Baoqi Pei, Yifei Huang, Jilan Xu, Yuping He, Guo Chen, Fei Wu, Yu Qiao, Jiangmiao Pang
AI summary
Overview
- Research area: Computer vision, specifically multimodal large language models (MLLMs) applied to egocentric (first-person) video understanding and reasoning.
- Technical level: Intermediate. Readers should be comfortable with concepts such as fine-tuning of large models, chain-of-thought prompting, reinforcement learning, and video-language benchmarks.
- Scope: The paper introduces a dataset, a two-stage training pipeline, and a model that together enable first-person video reasoning about hand-object interactions, long-horizon planning, and temporal/spatial grounding.
What This Paper Is About
Most video AI systems reason like an outside observer watching events unfold. Egocentric video is different: the camera wearer is an active agent whose hands, intentions, and goals are largely invisible, so a model must infer what the person is doing, why, and what comes next. EgoThinker addresses this gap by building a large first-person training corpus with explicit reasoning traces and then training a model to produce both coherent explanations and precise hand-object or time-interval predictions.
Key Contributions
- EgoRe-5M dataset: A 5-million-question-answer egocentric instruction-tuning corpus built from 13 million video clips, with four complementary splits covering short-term perception, long-term causal reasoning, chain-of-thought rationales, and fine-grained spatial/temporal grounding (hand-object boxes and time intervals).
- Two-stage training curriculum: Supervised fine-tuning (SFT) on reasoning and perception data followed by reinforcement fine-tuning (RFT) with GRPO, using rule-based rewards for output format and spatial/temporal Intersection-over-Union (IoU).
- EgoThinker model: A Qwen2-VL-7B-based model that achieves state-of-the-art results across multiple egocentric benchmarks (EgoTaskQA, QAEgo4D, ERQA, EgoPlan, EgoSchema, EgoMCQ, VLN-QA) and on a newly introduced cross-view skill transfer benchmark.
- Strong fine-grained grounding: Large gains over much larger models (including Qwen2.5-VL-72B) on hand-object localization and temporal grounding, while maintaining general video understanding performance.
Main Findings
- Broad egocentric gains: EgoThinker sets new state-of-the-art on all tested egocentric QA benchmarks, with notable improvements such as +4.4% on EgoPlan, +3.4% on EgoSchema, and +8.0% on VLN-QA over the Qwen2-VL baseline.
- Cross-view skill transfer: On a new Referenced Egocentric Skill (RES) benchmark, EgoThinker beats the second-best model by 8.4%, while prior MLLMs perform near chance levels.
- Spatial grounding: On EK-Visor, mIoU improves from 56.7 (Qwen2-VL-7B) to 53.7 with much higher localization accuracy of 80.3 (vs. 64.5), surpassing the 72B Qwen2.5-VL model on accuracy.
- Temporal grounding: On EgoExoLearn, mIoU and R1@0.05 rise dramatically (1.53 to 25.2 mIoU; 5.4 to 63.9 R1@0.05), indicating a near-zero baseline capability that the training finally unlocks.
- Each dataset split matters: Ablations show short-term data boosts EgoTaskQA, long-term data boosts EgoSchema, chain-of-thought data boosts QAEgo4D, and grounding data drives spatial/temporal localization.
- RFT outperforms SFT on grounding: Direct GRPO-based reinforcement fine-tuning on the fine-grained split substantially surpasses pure SFT without harming general QA performance.
- More frames help: Performance rises steadily as input frames increase from 1 to 64, with a sharp drop for single-frame inputs on long video tasks.
- Low hallucination cost: Halucination benchmarks show only a 0.6% drop on VideoHallucer but a 3.2% improvement on POPE over the baseline.
Methodology in Plain English
The team first needed enough first-person video with good labels. They mined instructional web videos (e.g., HowTo100M), trained a classifier to keep only true egocentric clips, then filtered for dynamic hand-object interactions, ending with 8.7 million web clips combined with existing egocentric datasets for a 13 million clip pool. From this pool they used large language models (DeepSeek-V3 and DeepSeek-R1) to auto-generate four kinds of question-answer data: short perception questions, long reasoning questions spanning 15-120 seconds, chain-of-thought questions with step-by-step rationales, and grounding questions requiring bounding boxes or time intervals.
Training happens in two stages. Stage one is standard supervised fine-tuning on a balanced mixture of general video QA, egocentric QA, and the new EgoRe-5M data to build foundational perception and reasoning. Stage two uses Group Relative Policy Optimization (GRPO), a reinforcement learning method that samples several candidate answers per question, scores them with simple rule-based rewards (correct output format plus spatial or temporal IoU against ground truth), and pushes the model toward higher-scoring responses. This second stage is what sharpens fine-grained localization.
Why This Matters
- Research impact: Shifts multimodal video research toward embodied, first-person reasoning and provides an open dataset (EgoRe-5M) and code that others can build on. It also demonstrates that reinforcement learning with verifiable rewards transfers to video grounding tasks.
- Real-world applications:
- Wearable AI assistants that understand what a user is doing and offer timely guidance (cooking, repairs, surgery).
- Augmented reality coaching systems that can predict the next action and warn about mistakes.
- Robotics and embodied agents that learn manipulation and task planning from human first-person demonstrations.
- Accessibility tools for hands-busy or vision-impaired users that need to interpret egocentric scenes.
- Industry relevance: Companies building smart glasses, AR headsets, and robot learning platforms need exactly this kind of first-person understanding. Improvements in fine-grained hand-object grounding are directly useful for industrial training, teleoperation, and skill-transfer pipelines.
Future Directions
- Real-time operation: The current model relies on offline fine-tuning and heavy annotation; adapting it for on-device, latency-sensitive inference on wearables is an open challenge.
- Self-supervised and semi-supervised learning: Reducing dependence on expensive LLM-generated annotations would make egocentric training more scalable.
- Richer multimodal integration: Adding audio, gaze, and tactile signals could further align egocentric reasoning with how humans actually perceive their surroundings.
- Embodied agent deployment: Extending the framework from passive reasoning to interactive action in real environments is a clear next step the authors highlight.
Target Audience
Researchers and engineers working on multimodal large language models, egocentric and first-person video understanding, video grounding, or reinforcement learning for vision-language tasks. Also useful for practitioners in wearable computing, AR/VR, and robotics who need models that reason about human activities from a first-person viewpoint. Readers with basic familiarity with transformers, fine-tuning, and video datasets will follow the paper comfortably.
Authors’ abstract
Egocentric video reasoning centers on an unobservable agent behind the camera who dynamically shapes the environment, requiring inference of hidden intentions and recognition of fine-grained interactions. This core challenge limits current multimodal large language models MLLMs, which excel at visible event reasoning but lack embodied, first-person understanding. To bridge this gap, we introduce EgoThinker, a novel framework that endows MLLMs with robust egocentric reasoning capabilities through spatio-temporal chain-of-thought supervision and a two-stage learning curriculum. First, we introduce EgoRe-5M, a large-scale egocentric QA dataset constructed from 13M diverse egocentric video clips. This dataset features multi-minute segments annotated with detailed CoT rationales and dense hand-object grounding. Second, we employ SFT on EgoRe-5M to instill reasoning skills, followed by reinforcement fine-tuning RFT to further enhance spatio-temporal localization. Experimental results show that EgoThinker outperforms existing methods across multiple egocentric benchmarks, while achieving substantial improvements in fine-grained spatio-temporal localization tasks. Full code and data are released at https://github.com/InternRobotics/EgoThinker.