TimeLens2: Generalist Video Temporal Grounding with Multimodal LLMs

Yuhan Zhu, Changlian Ma, Xiangyu Zeng, Xinhao Li, Zhiqiu Zhang, Songze Li, Jun Zhang, Tianxiang Jiang, Yuandong Yang, Ziang Yan, Zikang Wang, Xinyu Chen, Haoran Chen, Shaowei Zhang, Limin Wang

TimeLens2 enables generalist video temporal grounding by treating evidence as verifiable interval sets.

How can we train generalist multimodal LLMs to accurately ground temporal events in long videos without relying on brittle, sparse, or manually annotated interval labels?

Video multimodal models can describe video content, but they struggle to identify the specific timestamps that support their claims. This makes long-video search unreliable, as models often miss repeated evidence or produce imprecise boundaries. TimeLens2 introduces a staged pipeline that constructs reliable supervision through consensus-based localization and optimizes predictions using a temporal Wasserstein reward. This reward measures the distance between predicted and target interval sets, providing dense feedback even when predictions do not overlap with the ground truth. Across seven benchmarks, TimeLens2-4B outperforms significantly larger open-source models, improving over its backbone by 13.0 mIoU points.

Paper Primer

The core challenge is a structural mismatch: temporal evidence is a set of intervals, but standard training relies on brittle global annotations and reinforcement learning rewards that fail to distinguish near-misses from distant errors. TimeLens2 treats evidence as a first-class interval set throughout the entire lifecycle, from data construction to geometric optimization.

The method hinges on two moves: a staged curation pipeline (TimeLens2-93K) that uses hierarchical captions to propose, verify, and refine evidence intervals, and a temporal Wasserstein reward that computes the exact 1D distance between uniform distributions over merged interval supports. This reward acts like a distance-aware guide: it ranks predictions by how much "transport" is needed to align them with the target, ensuring the model learns from near-misses rather than receiving a flat zero-reward signal.

TimeLens2-4B achieves state-of-the-art performance on temporal grounding benchmarks, surpassing models with up to 397B parameters.

Comparison across seven benchmarks including Charades, ActivityNet, and Ego4D-NLQ. Average mIoU improvement of 13.0 points over the Qwen3-VL-4B backbone.

The temporal Wasserstein reward significantly improves optimization stability for group-relative policy optimization (GRPO).

Analysis of rollout groups during training. Rescues 75.8% of all-zero-tIoU rollout groups that would otherwise provide no learning signal.

Why is the temporal Wasserstein reward superior to standard temporal Intersection-over-Union (tIoU) for training?

tIoU is a binary-like metric that assigns zero reward to any prediction not overlapping the target, leaving the model unable to distinguish between a near-miss and a completely wrong guess. The Wasserstein reward provides a continuous, geometry-aware signal that ranks predictions based on their distance to the target, effectively turning silent training groups into active learning signals.

Does this model require specific query formats to function?

No. The model is trained with high instruction and response-format diversity, sampling from 27 request types and 28 response specifications. This ensures the model learns to search for evidence rather than simply imitating a specific query template or output syntax.

The paper demonstrates that temporal grounding is not merely a scaling problem, but an evidence-verification problem; the performance gains are driven by the quality of the curated 93K-instance corpus rather than raw model size.

Researchers should shift from one-pass annotation to staged, consensus-based verification pipelines and replace sparse overlap-based rewards with geometry-aware metrics like Wasserstein distance to enable robust temporal grounding.

Introduction to Temporal Grounding

We expose why current video MLLMs fail to locate evidence and outline TimeLens2’s set‑valued grounding solution.

Current video multimodal large language models (MLLMs) can narrate what happens but they rarely tell *when* the supporting evidence appears, leaving users to scan entire timelines manually. This gap stems from two structural mismatches: supervision treats temporal evidence as a single global label despite its inherently set‑valued nature, and reward functions such as temporal IoU give a zero score to any disjoint prediction, making a near‑miss indistinguishable from a completely wrong answer — like a test that marks any answer not exactly matching the key as zero, regardless of how close it is.

Temporal grounding asks a model to return the exact time intervals in a video that support a given query, potentially producing multiple disjoint spans.

TimeLens2 resolves these mismatches by treating evidence as a first‑class interval set throughout both supervision and optimization, and by introducing a Wasserstein‑based reward that accounts for temporal distance rather than binary overlap.

**Figure 1.** TimeLens2 as a generalist video temporal-grounding model. Top: mIoU across seven benchmarks covering diverse evaluation dimensions. Bottom: Representative queries from each benchmark.

**Figure 6.** Additional qualitative results on all seven benchmarks. Each row pairs five frames near the target evidence with the query, the temporal reasoning challenge, and full-video timelines showing the ground truth and predictions from four models. The TimeLens2 variants consistently recover the intended evidence, whereas the baselines select distractors, miss events, overextend boundaries, or fragment their predictions.

The shift from video description to temporal localization turns vague narration into verifiable evidence, enabling reliable search and reasoning over long videos.

Related Work

We situate TimeLens2 within prior video grounding work and highlight its novel data and reward.

Our contributions are threefold: (1) TimeLens2‑93K, a staged evidence‑verification pipeline that yields reliable single‑ and multi‑span supervision for long videos; (2) a matching‑free temporal Wasserstein reward that provides graded, fragmentation‑invariant feedback; and (3) compact 2B, 4B, and 8B generalist models evaluated on seven diverse grounding benchmarks.

The seven grounding dimensions span short indoor actions, event‑level scenes, highlight moments, long‑video multi‑span queries, user‑style long‑video searches, interrogative long‑video questions, and first‑person egocentric queries.

Temporal grounding has progressed from dedicated localization architectures that match proposals or regress boundaries to generative multimodal large language models (MLLMs) that express temporal evidence via language.

Early benchmarks paired short videos with single moments; later datasets expanded difficulty along axes such as subtitle‑aware retrieval, repeated evidence, long‑form video, and egocentric search, yet supervision quality has lagged behind scale.

Optimization methods have traditionally relied on overlap‑based rewards that only activate after prediction and target intersect, while newer approaches (GRPO/RLVR, MUSEG, NWD) explore richer geometry but still struggle with fragmentation and unequal cardinality.

TimeLens2-93K Data Pipeline

We build TimeLens2-93K by combining caption-driven proposals with dual‑agent verification and refinement.

Long videos require full‑video context for evidence search, yet sparse annotations and many distractors make precise labeling unreliable.

We first generate coarse, caption‑driven proposals from the whole video, then verify and sharpen them locally with cheap, focused models, keeping the overall cost scalable.

How does this pipeline differ from naïve full‑video annotation?

Instead of running a heavy model over the entire video for every query, we first narrow the search to a few caption‑derived clips and then apply lightweight, high‑precision models only on those short segments, dramatically reducing compute while preserving label quality.

**Figure 2.** TimeLens2-93K construction pipeline and corpus profile. Steps 1-3 construct caption-derived queries and coarse proposals; Steps 4-6 relocalize proposals with independent agents, verify interval sets, and refine their boundaries. The right column summarizes the retained corpus.

Two independent models act like separate detectives; when both independently locate the same interval, we trust the result.

Why use two models instead of a single stronger one?

Each model makes different mistakes; requiring agreement filters out model‑specific errors without the computational cost of a larger single model.

Compute IoUset = |[10,13] ∩ [11,13]| / |[10,13] ∪ [11,13]| = 2 / 3 ≈ 0.67.

Since IoUset < 0.9, the pair is rejected as inconsistent.

If Agent B had returned {[10 s, 13 s]}, IoUset would be 1.0 and the interval would be kept.

High IoUset ensures that both agents locate essentially the same temporal segment, preventing spurious matches caused by one model’s bias.

We accept an interval only if both agents agree temporally and the visual content matches the query semantically.

What if the intervals have high IoUset but low embedding similarity?

The instance is discarded because, despite temporal agreement, the visual content does not correspond to the query, preventing semantically incorrect labels from entering the corpus.

After high‑confidence intervals are identified, we fine‑tune their start and end points within a narrow window, like trimming a video clip to its exact cut.

Why restrict refinement to a ±3‑second window?

Most annotation errors lie within a few seconds of the true transition; a small window captures the correct boundary while avoiding expensive full‑video processing.

The TimeLens2 Model and Reward

We split learning into evidence search and interval calibration using a Wasserstein‑based reward.

Sparse, noisy interval labels give weak supervision, and traditional tIoU rewards treat near‑misses as total failures. To obtain a robust generalist video model we split learning into a long‑context supervised phase and a reinforcement‑learning phase that directly optimizes a geometry‑aware reward.

Long‑context supervised grounding treats temporal grounding as a search problem: the model must locate sparse evidence in full‑video context before it can estimate precise boundaries.

Instruction and response‑format diversity forces the model to be invariant to how a grounding request is phrased or how timestamps are serialized, preventing it from over‑fitting to a single prompt style.

Rollout‑guided hard‑sample mining uses off‑policy completions to estimate per‑example tIoU; low‑scoring examples receive higher sampling weight, turning the model’s own failure distribution into an adaptive curriculum.

A multimodal large language model that consumes video frames together with a textual query and emits free‑form text that can include one or many temporal intervals.

How does a Generalist Video MLLM differ from a plain text‑only LLM?

Besides the usual language modeling head, it incorporates a vision encoder and cross‑modal attention layers, enabling it to attend to visual evidence when generating interval tokens.

Instead of a binary overlap score, RTW measures how much temporal “mass” must be shifted to align a predicted interval set with the ground‑truth support, rewarding predictions that are temporally closer even when they do not intersect.

Why does RTW give a non‑zero signal when tIoU is zero?

tIoU only looks at overlap, so disjoint intervals score zero. RTW first spreads each set into a uniform mass; even disjoint masses have a finite transport cost, so the exponential yields a graded similarity that reflects how far apart the intervals are.

Merge $Y$ → $[10,15]\cup[25,30]$, length $|\text{merge}(Y)|=10$.

Merge $\hat Y$ → $[12,14]\cup[28,32]$, length $|\text{merge}(\hat Y)|=6$.

Uniform densities: $\mu_Y(t)=1/10$ on its support, $\mu_{\hat Y}(t)=1/6$ on its support.

Compute 1‑Wasserstein distance $W(\hat Y,Y)=\int|F_{\hat Y}(t)-F_Y(t)|dt = 4.0$ (area between CDFs).

RTW $=\exp(-4.0/(10+\epsilon))\approx\exp(-0.4)=0.67$.

Even though none of the predicted intervals overlap the ground truth, RTW assigns a moderate score because the predictions lie close to the true spans, unlike tIoU which would give zero.

**Figure 3.** Overlap plateaus and matching artifacts in temporal interval-set rewards. (a) tIoU ties the near miss A and distant error B at zero, whereas $R_{TW}$ ranks them by temporal proximity. (b) tIoU favors the single-moment prediction A, while $R_{TW}$ favors B, which also recovers part of the second target moment. MUSEG addresses these failures with NGIoU under one-to-one matching [25], but introduces new artifacts: (c) fragmentation forces P2 into a false cross-event match; (d) identical merged support receives different $R_{NGIoU}$ scores solely because the prediction is partitioned differently.

**Figure 5.** Temporal mass models. The same intervals [[10, 15], [25, 30], [32, 38]] are converted into four probability distributions for the Wasserstein reward.

Experimental Results

TimeLens2 delivers strong, consistent gains across all temporal grounding benchmarks.

The paper’s core claim is that sparse, noisy supervision hampers temporal grounding, and the Wasserstein Temporal Reward ($RTW$) mitigates this by rewarding proximity rather than binary overlap.

TimeLens2‑4B improves mean IoU by up to +19.6 points over the strongest open‑source baseline on the hardest VUE‑TR benchmark.

Table 1 shows a 19.6‑point mIoU gain versus Qwen3‑VL‑4B on VUE‑TR, and similar gains on VUE‑TR‑V2 and MomentSeeker.

**Table.** Performance comparison of various models across multiple benchmarks (Charades, ActivityNet, QVHighlights, VUE-TR, VUE-TR-V2, MomentSeeker, and Ego4D-NLQ) using R1@0.5 and mIoU metrics.

**Figure 4.** Qualitative comparison on temporal grounding. Each panel shows five target frames, the query, and a full-video ruler from 0 to the video duration; colored spans follow the shared legend. Dense labels summarize many short windows after merging small display gaps.

Across diverse benchmarks, TimeLens2’s $RTW$‑guided training yields uniformly higher recall and IoU, confirming that dense, distance‑aware rewards improve temporal grounding at any model scale.

Ablation Study

We isolate the contribution of each data component by ablating the TimeLens2‑93K corpus.

To understand which part of the training data drives performance, we ablate the TimeLens2‑93K corpus and fine‑tune Qwen3‑VL‑4B on several mixtures.

Training with TimeLens2‑93K improves the question‑form MomentSeeker benchmark from 15.3 % to 25.8 % mIoU.

MomentSeeker mIoU rises to 25.8 % when the model is fine‑tuned on the full TimeLens2‑93K mixture.

TimeLens‑100K, despite having a similar number of QA turns, attains only 39.4 % average mIoU, showing that mere scale does not explain the gains observed with TimeLens2‑93K.

**Table.** Scale alone does not explain the gain: TimeLens-100K has a comparable number of QA turns but reaches only 39.4 average mIoU, with substantially weaker long-video and QVHighlights results. Adding it to TimeLens2-93K yields a smaller improvement from 45.8 to 46.0, mainly on the TimeLens-Bench-style datasets; Ego4D-NLQ then raises the average to 46.4 and strengthens egocentric grounding. TimeLens2-93K therefore provides the transferable search capability, while TimeLens-100K and Ego4D-NLQ add complementary benchmark and viewpoint coverage.

Full Results

Comprehensive benchmark scores for all evaluated models across four metrics.

The following table reports each model’s performance on the four evaluation metrics.

Additional Qualitative Examples

TimeLens2’s qualitative gains across temporal‑grounding benchmarks.

TimeLens2 reaches 59.3 % R1@0.3 on CharadesTL, a 12‑point absolute improvement over the strongest prior baseline.

Prior work reported at most 47.3 % R1@0.3 on the same benchmark.

Limitations

Temporal grounding performance degrades on short and noisy intervals.

The distribution of RTW scores (e.g., 3.2, 5.6, 9.5, …, 62.9) exhibits a heavy tail: many clips achieve modest similarity while a few attain very high values, indicating sensitivity to clip length and annotation noise. Consequently, the system struggles with brief events (<5 s) and with densely overlapping intervals, limiting its reliability for fine‑grained temporal grounding.

Future Directions

Evaluation setup, data overlap audit, and avenues for extending temporal grounding.

We evaluate temporal grounding on seven benchmarks using VLMEvalKit, adapting it for the TimeLens re‑annotations of Charades‑STA, ActivityNet Captions, QVHighlights, the vision‑query subsets of VUE‑TR/VUE‑TR‑V2, the text‑only MomentSeeker subset, and Ego4D‑NLQ‑v2. All models receive only visual frames; audio and subtitles are omitted. The per‑benchmark input configuration (Table 12) fixes frame‑rate, pixel‑area bounds, and total pixel budget, while any model‑specific deviations are listed in Table 13.

To ensure a clean split between training data and evaluation, we canonicalized YouTube IDs across all seven subsets and found no overlap. This audit removed prefixes, normalized clip names, and searched metadata fields for hidden identifiers, confirming that the training source set is disjoint from every benchmark.

TimeLens2‑93K was built with cost‑effective open‑weight models, which limits annotation richness and temporal precision; replacing them with stronger proprietary multimodal models (e.g., Gemini 3.1 Pro) could substantially improve data quality. Beyond better annotations, the framework naturally extends to long‑context spatiotemporal grounding, enabling models to locate events, track entities over extended periods, and support embodied agents that must reason over persistent visual memory. We hope this work inspires larger, richer spatiotemporal datasets and models that turn long‑video perception into reliable, grounded action.

Discussion

Discussion interprets ablations, highlighting label curation, context length, instruction diversity, and reward design.

Progressive label curation yields a clear quality‑over‑quantity trend: temporal consensus, semantic verification, and boundary refinement each raise average mIoU while dramatically reducing the number of labels.

Long‑context training improves average mIoU from 44.4 % at 16 K to 46.4 % at 100 K, but gains are uneven—some datasets peak early while others keep rising, suggesting a context‑threshold effect.

Diversity in both grounding requests and timestamp renderings boosts performance; response‑format diversity alone adds 0.5 % mIoU, request diversity 0.1 %, and their combination yields a synergistic 0.9 % gain.

Among temporal‑reward variants, uniform support consistently outperforms endpoint atoms, center Gaussians, and boundary Gaussians, because it preserves both the location and duration of evidence intervals.

Replacing RTW with NGIoU drops average mIoU to 47.1 % from 47.7 %; the gap widens on multi‑interval benchmarks, highlighting RTW’s robustness to fragmented predictions.

Zero‑overlap diagnostic ablations reveal that RTW’s distance‑aware signal, not merely dense credit, drives the observed performance gains.

Conclusion

RTW restores credit for near‑misses and reshapes reward signals, boosting video MLLM performance.

Table 8 reveals a clear distance effect: adding $R_{\text{TW}}$ recovers positive overlap for 21.9 % of near misses, 15.8 % of mid‑distance misses, and only 5.7 % of far misses; the corresponding mIoU drops from 7.5 % to 4.0 % to 1.4 %.

**Table 8.** Zero-overlap misses under $R_{tIoU}$ and after adding $R_{TW}$.

GRPO’s group‑relative learning hinges on breaking reward ties; without $R_{\text{TW}}$, non‑overlapping predictions receive uniform zero reward, yielding no gradient after mean‑centering.

**Table 9.** Impact of adding $R_{TW}$ on reward distribution metrics.

Beyond tie‑breaking, $R_{\text{TW}}$ expands within‑group variance (4× increase) and raises the mean absolute advantage, directly amplifying the policy update.

TimeLens2‑93K couples this dense reward with a verification pipeline—evidence proposal, independent localization, consensus, semantic verification, and boundary refinement—turning evidence into a traceable interval set.

With that combination, compact 2 B, 4 B, and 8 B video MLLMs surpass much larger open‑source models on seven benchmarks, proving that reliable, auditable temporal grounding can be a native capability of generalist video MLLMs.

Supplementary Overview

Supplementary overview details extra experiments, data, and evaluation protocols.

The supplementary material expands the paper with full results, qualitative examples, and detailed evaluation protocols.

A.1 introduces a factorized diversity scheme for instruction phrasing and response formatting, preventing the model from conflating localization with surface‑form generation.

**Table.** Composition of the 28 response specifications

This combinatorial factorization drives the controlled 2 × 2 analysis reported in Table 5, ensuring that temporal semantics are learned independently of any particular phrasing or serialization.

Instruction Diversity

Defines the response format for temporal grounding queries and reports full benchmark results.

The grounding request expects a textual query (e.g., “When does q happen?”) and requires the model to return one or more time intervals that satisfy the query.

Response specifications are defined by a strict syntax: each interval is expressed as a start‑time and end‑time pair, and multiple intervals can be concatenated with commas, conjunctions, or wrapped in a bracketed array.

Timestamp encoding accepts three canonical forms—decimal seconds (12.0 s), minute‑second (00:12), and hour‑minute‑second (00:00:12)—all of which are normalized internally to seconds.

When several disjoint events are relevant, the specification may list them as “12.0 s to 18.5 s, and 31.0 s to 36.0 s” or as a JSON‑like array [[12.0, 18.5], [31.0, 36.0]]. Both render to the same internal representation.

**Table 11.** Full temporal grounding results across IoU thresholds.

Specifically, the TimeLens2‑2B model attains average scores of 57.9 % at R1@0.3, 47.0 % at R1@0.5, and 32.0 % at R1@0.7, illustrating the benefit of the scalable verification pipeline even at modest model size.

Evaluation Protocol

Describes how model performance is measured across datasets using RTW and related metrics.

We evaluate on three disjoint splits: a training set used to fit the model, a validation set for hyper‑parameter tuning, and a held‑out test set for final reporting. Each split contains a diverse collection of video clips with annotated temporal intervals.

The core metric is the Wasserstein Temporal Reward ($RTW$), which penalizes temporal distance rather than treating all non‑overlapping predictions as equally wrong. In addition we report conventional temporal‑grounding scores (e.g., IoU‑based recall) to facilitate comparison with prior work.

For each video the verification pipeline computes a scalar $RTW$ score; the numbers listed in the two blocks above are these per‑video scores for the validation and test splits respectively. Missing entries (shown as “–”) indicate videos for which no ground‑truth interval was available and are excluded from the average.

Train-Test Audit

Audit of temporal grounding scores highlights distribution gaps between training and test splits.

The audit lists per‑category temporal grounding scores for the training and test splits. Training scores range from 8.2 to 74.6, while test scores range from 46.2 to 84.1, with several test entries missing.

Input Configurations

Input configurations produce a wide range of performance scores.

Prompt Templates

Performance scores for each prompt template.

Questions & answers

What is the main contribution of TimeLens2?

TimeLens2 contributes three things: (1) TimeLens2-93K, a staged evidence-verification pipeline producing 93K reliable single- and multi-span supervision instances; (2) a matching-free temporal Wasserstein reward (RTW) that provides graded, geometry-aware feedback; and (3) compact 2B, 4B, and 8B generalist video MLLMs evaluated on seven diverse temporal grounding benchmarks.

What problem does TimeLens2 address?

TimeLens2 addresses the inability of video MLLMs to identify the specific timestamps that support their descriptions, a problem caused by two structural mismatches: supervision treats temporal evidence as a single global label rather than a set of intervals, and overlap-based rewards like tIoU assign zero score to near-misses, preventing models from learning from close predictions.

Why does temporal grounding matter for long-video search?

Without precise temporal grounding, users must scan entire video timelines manually, and models may miss repeated evidence or produce imprecise boundaries, making long-video search unreliable.

How does the TimeLens2-93K data pipeline work?

The pipeline uses a staged approach: it first generates hierarchical captions to propose candidate evidence clips, then applies two independent lightweight localization models to those clips and requires their outputs to agree (consensus), then verifies semantic correctness via embedding similarity, and finally refines boundaries within a ±3-second window around detected transitions.

Why does the pipeline use two localization models instead of one stronger model?

Each model makes different mistakes, so requiring agreement between two models filters out model-specific errors without the computational cost of running a single larger model over the full video.

What is the temporal Wasserstein reward (RTW) and how does it work?

RTW measures the 1D Wasserstein (earth-mover) distance between uniform distributions spread over the merged supports of the predicted and target interval sets; it then converts this distance into a graded similarity score via an exponential, so even disjoint predictions receive a non-zero reward proportional to how close they are to the target.

Why is RTW superior to standard temporal IoU (tIoU) for training?

tIoU is binary-like and assigns zero reward to any prediction that does not overlap the target, making it impossible for the model to distinguish a near-miss from a completely wrong guess; RTW provides a continuous, distance-aware signal that turns previously silent (zero-gradient) training examples into active learning signals.

What are the key experimental results for TimeLens2?

TimeLens2-4B outperforms significantly larger open-source models and improves over its backbone by 13.0 mIoU points across seven benchmarks; the 2B model attains 57.9% at R1@0.3, 47.0% at R1@0.5, and 32.0% at R1@0.7; replacing RTW with NGIoU drops average mIoU from 47.7% to 47.1%, with the gap widening on multi-interval benchmarks.

What benchmarks and evaluation setup does TimeLens2 use?

TimeLens2 is evaluated on seven benchmarks via VLMEvalKit: TimeLens re-annotations of Charades-STA, ActivityNet Captions, QVHighlights, vision-query subsets of VUE-TR/VUE-TR-V2, a text-only MomentSeeker subset, and Ego4D-NLQ-v2; all models receive only visual frames with audio and subtitles omitted, and a train-test audit confirmed no YouTube ID overlap between training and evaluation sets.

How does TimeLens2 handle instruction and response-format diversity during training?

Training samples from 27 request types and 28 response specifications, ensuring the model learns to locate temporal evidence regardless of how a query is phrased or how timestamps are serialized; this combinatorial diversity adds a synergistic 0.9% mIoU gain over using either type of diversity alone.

What does the ablation study reveal about data quality versus quantity?

TimeLens-100K, despite having a similar number of QA turns to TimeLens2-93K, attains only 39.4% average mIoU, demonstrating that the staged verification pipeline's data quality—not mere scale—drives the performance gains.

What are the limitations of TimeLens2?

RTW scores exhibit a heavy-tailed distribution, making the system sensitive to clip length and annotation noise; it struggles with brief events shorter than 5 seconds and with densely overlapping intervals, limiting reliability for fine-grained temporal grounding.

How does TimeLens2 compare to prior temporal grounding approaches?

Earlier methods used dedicated localization architectures or overlap-based rewards (tIoU, GRPO/RLVR, MUSEG, NWD) that only activate after prediction and target intersect and struggle with fragmentation and unequal cardinality; TimeLens2 replaces these with a geometry-aware Wasserstein reward and a staged verification pipeline, enabling compact models to surpass much larger open-source alternatives.

How does RTW affect GRPO training dynamics specifically?

GRPO's group-relative learning requires breaking reward ties; without RTW, non-overlapping predictions all receive zero reward, yielding no gradient after mean-centering; RTW expands within-group reward variance by 4× and raises mean absolute advantage, directly amplifying the policy update.

What future directions does the paper identify?

The paper suggests replacing the cost-effective open-weight annotation models with stronger proprietary models such as Gemini 3.1 Pro to improve data quality, and extending the framework to long-context spatiotemporal grounding for entity tracking and event localization.

Who are the authors of TimeLens2 and where was it published?

The paper does not specify individual author names or a publication venue; it is available on arXiv at https://arxiv.org/abs/2607.17423.

Key terms

temporal grounding
The task of identifying the specific time intervals in a video that correspond to a given natural-language query or description.
MLLM (Multimodal Large Language Model)
A large language model extended with a vision encoder and cross-modal attention so it can process both visual frames and text simultaneously.
TimeLens2-93K
The 93,000-instance training corpus produced by TimeLens2's staged evidence-verification pipeline, containing reliable single- and multi-span temporal annotations for long videos.
RTW (temporal Wasserstein reward)
A training reward that measures the 1D Wasserstein distance between uniform distributions over predicted and target interval supports, providing a continuous, geometry-aware signal even when predictions do not overlap the target.
tIoU (temporal Intersection over Union)
A metric that measures the ratio of the overlap to the union of predicted and ground-truth time intervals, assigning zero to any non-overlapping prediction.
mIoU (mean Intersection over Union)
The average tIoU score computed across all test examples or benchmarks, used as a primary evaluation metric for temporal grounding quality.
R1@threshold
A recall metric that measures the fraction of queries for which the top-1 predicted interval achieves at least the specified IoU threshold (e.g., 0.3, 0.5, or 0.7) with the ground truth.
Wasserstein distance (1D)
The minimum 'transport cost' needed to move mass from one probability distribution to another along a line, here used to quantify how far apart two sets of time intervals are.
GRPO (Group Relative Policy Optimization)
A reinforcement learning algorithm for language models that updates the policy based on relative reward differences within a group of sampled completions for the same prompt.
IoUset
An intersection-over-union metric computed over sets of intervals rather than single intervals, used in the pipeline to measure agreement between two localization models.
consensus-based localization
A data-curation strategy that accepts an annotation only when two independent localization models produce sufficiently overlapping interval predictions for the same query.
rollout-guided hard-sample mining
A curriculum strategy that uses off-policy model completions to estimate per-example difficulty and assigns higher training sampling weight to examples where the model currently performs poorly.
NGIoU (Normalized Generalized IoU)
A geometry-aware overlap metric that extends IoU to penalize the distance between non-overlapping boxes, used as a baseline reward variant in the paper's ablation study.
VLMEvalKit
An open-source evaluation toolkit for vision-language models, adapted by the authors to run TimeLens2's seven temporal grounding benchmarks.
Ego4D-NLQ-v2
A benchmark derived from the Ego4D dataset that requires models to answer natural-language queries by localizing evidence in first-person (egocentric) video recordings.
QVHighlights
A temporal grounding benchmark focused on localizing highlight moments in videos in response to natural-language queries.
uniform support distribution
A probability distribution that spreads equal mass uniformly across the merged time span of a set of intervals, used by RTW to represent predicted and target interval sets before computing Wasserstein distance.

Read the original paper

Open the simplified reader on Paperglide

Browse all simplified papers