Video AI has learned to narrate what it sees, but not to show its work. TimeLens2, a newly released open-weight model, tries to fix that: given a text query, it returns the exact timestamp intervals in a video that contain the answer, so a claim can be checked against the footage instead of taken on faith. It was named Hugging Face's number-one Paper of the Day, and the interesting story underneath is that better data, not just a bigger model, does most of the work.
Key facts
- TimeLens2 is a fine-tune of Qwen3-VL for locating a query's visual evidence as one or more timestamp intervals. Paper
- Its dataset, TimeLens2-93K, contains 93,232 grounding instances from 23,793 videos, including multi-interval examples. Paper HTML
- Code for supervised fine-tuning, reinforcement learning, and evaluation is released under Apache-2.0, with 2B, 4B, and 8B checkpoints. GitHub
- The 4B model is reported to exceed a much larger Qwen3.5-397B model on all seven of the paper's grounding benchmarks. Results
Some background on the problem. "Temporal grounding" means answering not just what happens in a video but when: point to the seconds where the evidence lives. The standard way to score this is temporal intersection-over-union, which measures how much a predicted time interval overlaps the correct one. Its flaw is brutal for training: if the prediction does not overlap the target at all, it scores zero, whether the guess was one second off or ten minutes off. A model gets no signal about which near-miss was closer, so learning stalls.
TimeLens2's core idea is to treat the merged time occupied by predicted evidence as a probability distribution and measure how far it is from the target using a one-dimensional Wasserstein distance, sometimes called earth-mover's distance, the cost of shoveling one pile of probability into the shape of another. That gives more credit to a close miss than a distant one, without needing a brittle one-to-one matching between predicted and target spans. Concretely, the authors report it turns roughly one in seven "no signal" training groups into usable learning signal, and creates a usable ordering for most all-zero-overlap cases.
But the honest, sharper framing is that the reward is a modest finishing touch and the data is the real advance. The pipeline starts from tens of thousands of YouTube videos, captions coherent scenes, proposes queries, then has two separate models independently re-localize them, with a consensus gate, a relevance check, and boundary refinement filtering the pool down to the final 93,000 high-quality pairs. The ablations tell the story cleanly: the curated supervised data takes the 4B model from about 34.7 to 45.8 average grounding accuracy, and the new Wasserstein term then adds under a point on top. In other words, careful long-video supervision does the heavy lifting; the reward is a sensible calibration.
Why it matters: making video answers auditable is a real step toward trustworthy video understanding, especially for search, compliance, and any use where "which moment proves this" matters as much as the answer. And unlike many paper claims, this one is materially reproducible: Apache-2.0 weights at three sizes, full training and evaluation code, bundled annotations, and downloadable video archives.
The strongest counter-take keeps the "generalist state-of-the-art" label from being oversold. Three of the seven benchmarks are re-annotations made by the same research lineage, which argues that older benchmarks have serious label errors and can re-rank models; better labels are a genuine contribution, but they mean the headline average is not wholly independent evaluation. The paper's own overlap audit finds no matching source IDs between training and test sets, yet cannot rule out renamed duplicate content. And all the headline numbers are author-reported, with no outside replication yet; the official discussion thread contains the authors' announcement but no independent reply, and the repository showed 25 stars at check time. The clean editorial hook: video models learned to narrate; TimeLens2 is trying to make them cite their footage.
Originally published on Ground Truth, where every claim is checked against the primary source.
Top comments (0)