Skip to main content
Advertisement
Browse Subject Areas
?

Click through the PLOS taxonomy to find articles in your field.

For more information about PLOS Subject Areas, click here.

  • Loading metrics

Explicit temporal inductive biases for video moment retrieval via multi-scale Gaussian priors

Abstract

Video moment retrieval aims to localize video segments corresponding to natural language queries. While Transformer models are widely applied, their localization performance declines when processing diverse temporal scales. This limitation arises from the dependence on implicitly learned decoder queries. Without explicit temporal grounding, these unstructured embeddings lead the decoder to perform a global search across the full video sequence. We propose Gaussian-DETR to address this by introducing explicit temporal awareness into the decoding process. Our framework replaces unstructured embeddings with queries constructed from multi-scale Gaussian temporal priors, parameterized by a learnable center and scale. To adapt these priors to the input, we design a multi-scale Gaussian pooling mechanism that extracts local features from the encoder for query initialization, introducing a temporal inductive bias while maintaining the architectural efficiency of DETR. On the QVHighlights benchmark, Gaussian-DETR provides a scale-specific benefit for long-event retrieval, improving Long mAP by +1.98 points over Moment-DETR with statistical support (p = 0.0111), while the differences in overall recall are statistically inconclusive. Ablations suggest that the Gaussian prior improves scale-aware query initialization by balancing long-event coverage and local temporal specificity. This mechanism provides a parameter-efficient component for studying scale-aware query initialization in DETR-like video moment retrieval models.

Introduction

Video Moment Retrieval (VMR) aims to accurately localize the temporal boundaries of specific events in untrimmed video streams via natural language queries [1,2]. Recent large vision-language models and related methods [36] have broadened multimodal video understanding. In this work, we focus on efficient DETR-based sequence prediction models for VMR [711]. These models combine efficient inference with set-based prediction, enabling cross-modal feature interaction and temporal boundary prediction without heuristic post-processing such as Non-Maximum Suppression (NMS) [12].

However, this end-to-end architecture still faces limitations when processing events with extreme temporal spans. Existing DETR-like models often exhibit localization deviations and metric variability when dealing with extremely long-duration events or transient, short actions. Fundamentally, mainstream models mostly rely on implicitly learned decoder queries. During initialization, these queries do not contain any physical concepts regarding “temporal center” or “temporal span”, causing the model to conduct an unfocused search over the entire video sequence during the decoding phase. This lack of explicit temporal center-and-span parameterization can reduce localization accuracy for temporally localized evidence.

In the image object detection domain, DAB-DETR [13] demonstrated that injecting explicit anchor coordinates into decoder queries substantially improves localization accuracy and training stability. Inspired by this finding, our work extends the principle of structured query parameterization to the one-dimensional temporal axis of video moment retrieval. However, because video temporal content exhibits strong context dependency that differs from static spatial arrangements, a direct adaptation of two-dimensional spatial anchors is insufficient. We therefore design multi-scale Gaussian temporal priors that jointly encode temporal center and span information.

Previous work has also explored Gaussian functions for temporal modeling, but mainly as proposal-generation or sample-mining mechanisms under weak supervision. For example, Zheng et al. [14] use learnable Gaussian functions to generate temporal proposals for contrastive learning, and D3G [15] introduces dynamic Gaussian priors to assist weakly supervised temporal grounding. In contrast to these methods, which use Gaussian distributions as auxiliary tools for proposal scoring or loss computation, our method integrates multi-scale Gaussian priors directly into the decoder query initialization of a fully supervised DETR-style framework.

To this end, we propose Gaussian-DETR as a parameter-efficient mechanism for scale-aware query initialization in DETR-like architectures. Discarding traditional unstructured embeddings, we instantiate each query as a multi-scale Gaussian prior with clear physical meaning by introducing learnable “temporal center” and “scale” parameters. To enable these temporal hypotheses to dynamically adapt to the current input video instances, we further design a multi-scale Gaussian pooling mechanism. This mechanism extracts context-aware local representations from the encoded features and fuses them with semantic prototypes, thereby achieving structured, dynamic query initialization. This design preserves the end-to-end, post-processing-free inference style of DETR while changing the decoder initialization from an unconstrained implicit search to a scale-aware structured hypothesis.

To evaluate this mechanism, we designed it as a lightweight plug-in component and integrated it into Moment-DETR and QD-DETR-style architectures. This cross-model experimental setup provides an additional compatibility check beyond a single baseline implementation, helping to isolate the contribution of the explicit temporal prior. Experiments show that the main benefit is scale-specific: the method provides statistically supported improvement on long-event retrieval, while its effect on overall recall is not statistically conclusive.

The main contributions of this study are summarized as follows:

  • Proposed the Gaussian-DETR framework: Inspired by the structured query parameterization of DAB-DETR, we adapt the principle of explicit coordinate-based priors from the spatial to the temporal domain. By introducing multi-scale Gaussian temporal priors into decoder queries, we provide the model with a physically meaningful temporal inductive bias;
  • Provided statistical evaluation for long-event retrieval: Across 15 matched seeds, Gaussian-DETR yields a statistically supported improvement in Long mAP under the R1@0.5-selected checkpoint protocol;
  • Demonstrated architectural compatibility: Experiments suggest that the multi-scale Gaussian prior module can be integrated into an additional DETR-like architecture, represented by QD-DETR.

Related work

Video moment retrieval

The core task of video moment retrieval is to accurately localize the corresponding semantic segments in a video based on natural language descriptions, as studied in early work such as TALL and MCN [1,2]. Proposal-based approaches commonly construct candidate temporal clips, for example with sliding windows, and then match, rank, or refine these candidates using cross-modal scoring and boundary regression modules [1]. Such proposal-centric pipelines rely on heuristic candidate construction or post-processing steps and struggle to balance computational efficiency and localization accuracy when processing long videos.

With the widespread adoption of Transformers, the end-to-end paradigm has gradually become mainstream. Methods represented by Moment-DETR [7] borrow the DETR architecture from object detection, utilizing a set of learnable queries to directly perform cross-attention interactions with video-text features, significantly simplifying the localization pipeline. However, this architecture still has limitations: queries in the model are usually modeled as implicit semantic vectors, lacking explicit temporal position or span priors. This makes the model prone to structural shortcomings when handling long videos or complex events with significant disparities in temporal span.

Recent studies attempt to alleviate this issue from the perspective of decoding mechanisms, training strategies, or query-aware encoding [16]. For example, Sim-DETR reduces query conflicts during decoding by restricting mutual interference among queries and introducing alignment constraints [17]; length-aware methods such as Length-Aware DETR with MomentMix and Length Matters [11,18] utilize length-conditioned decoding or data augmentation to improve localization for short segments. In parallel, QD-DETR [9] improves encoding quality by constructing query-dependent video representations through query-video interaction. These improvements mainly focus on late-stage decoding computations, training regularization, or encoder-side query conditioning, while query initialization remains largely based on learned embeddings without explicit temporal structure. Gaussian-DETR instead focuses on the structural hypotheses used to initialize decoder queries under extreme scale disparities.

Temporal modeling and proposal generation based on Gaussian distributions

To enhance the model’s ability to model temporal structural continuity and span variations, previous research has attempted to introduce Gaussian distributions or Gaussian mixture models [19] as explicit temporal priors. Such methods are particularly common in weakly supervised video moment retrieval tasks: some works utilize learnable Gaussian functions to characterize the temporal center and duration range of events, generate high-quality proposal segments, and assist in the mining and alignment of positive and negative samples [14]. Studies like D3G [15] combine minimal “glance-level” annotations and introduce dynamic Gaussian priors to improve the model’s robustness and stability in weakly supervised scenarios.

The aforementioned methods demonstrate the value of Gaussian functions for temporal structure modeling, primarily as auxiliary mechanisms for proposal generation, sample selection, or loss constraints. Gaussian-DETR uses this parameterization differently: it models Gaussian priors as part of the decoder query hypothesis space in a fully supervised DETR-style framework. This shifts the role of Gaussian temporal modeling from indirect proposal or scoring support to explicit query construction. Directly encoding temporal center and span information into decoder queries provides a structured way to study scale disparities between long and short events.

Multi-scale temporal modeling and structural priors

Handling events of varying lengths in videos is a core challenge in temporal localization. To capture temporal spans of different scales, previous works mostly focused on the feature extraction stage, such as utilizing temporal pyramids, ActionFormer’s multiscale representation with local self-attention [20], 2D-TAN’s start-end temporal map for adjacent moment relations [21], or multi-resolution feature fusion.

Existing multi-scale modeling is mostly limited to the feature encoding level. Entering the decoding phase, models still rely on randomly initialized or globally shared query variables. This implies that the decoder must perform unguided attention computations over the global video sequence, lacking a clear orientation toward specific temporal centers and span ranges. When confronting lengthy videos or extremely unevenly distributed events, this decoding process—devoid of explicit temporal inductive biases—not only converges slowly but also easily falls into local optima, limiting the final localization precision.

Transformer query initialization strategies

In Transformer-based architectures, the initialization strategy of queries has a decisive impact on model convergence and final performance. In the field of image object detection, injecting explicit spatial position priors, such as anchor boxes or reference points in DAB-DETR [13], into queries has been widely proven to substantially improve localization accuracy and training stability.

However, this initialization strategy based on explicit positional priors has not been fully extended to the video moment retrieval domain. Current mainstream methods still tend to initialize queries using random vectors or globally learnable parameters that lack physical meaning. Since images are static two-dimensional spaces, while videos possess complex temporal dynamics and context dependencies, the “two-dimensional spatial priors” from the image domain cannot be simply mechanically applied to the “one-dimensional temporal axis” of videos. Temporal localization models require an initialization approach specifically tailored for the temporal dimension—that is, encoding information with clear physical meanings like “temporal center point” and “span length” into the queries, and combining them with the specific features of the current input video, thereby providing the decoder with a clearer, more accurate joint initialization starting point.

Large vision-language models for temporal grounding

Recent advances in large vision-language models (VLMs) have introduced new approaches to temporal grounding and long-video understanding. Time-R1 [4] improves temporal video grounding through reinforcement-learning post-training with verifiable rewards, whereas LVAgent [6] uses multi-round collaboration among MLLM agents for long-video understanding. While these approaches demonstrate strong zero-shot or few-shot generalization, they typically require substantially more computational resources and depend on large-scale pre-training or multi-agent inference. Our work operates in a complementary regime: we propose a lightweight structural prior that can be integrated into efficient DETR-style architectures using pre-extracted features. The Gaussian temporal prior addresses the specific challenge of multi-scale query initialization within a fixed-parameter model, rather than relying on the emergent reasoning capacity of foundation models.

Positioning of the proposed method

This paper proposes a Transformer query initialization method based on multi-scale Gaussian priors and constructs the Gaussian-DETR framework for fully supervised video moment retrieval. Our work builds on two lines of prior research. From the structured query initialization paradigm exemplified by DAB-DETR [13], we adopt the principle that explicit coordinate-based priors improve query quality; we adapt this principle from two-dimensional spatial anchors to one-dimensional temporal centers and spans. From the temporal Gaussian modeling literature [14,15], we draw on the idea that Gaussian functions provide a natural parameterization for temporal extent; we repurpose this parameterization from auxiliary proposal or loss mechanisms to the core decoder query construction.

Distinct from spatial priors in the image domain, and considering the strong context dependency of video temporal content, this paper combines instance-level contextual features extracted via Gaussian pooling with learnable semantic prototype embeddings to achieve a synergistic initialization of position and content priors. Before entering the decoding phase, queries already possess temporal structural constraints and instance-specific semantic conditions, reducing the need for unconstrained global searches by the decoder along the temporal axis.

Unlike previous practices that treat Gaussian distributions as proposal generation or training auxiliary tools, Gaussian-DETR incorporates them as structural priors in the decoder query initialization. This design operates solely at the query construction stage and does not modify the encoder, decoder, loss functions, or matching rules of the underlying DETR architecture, supporting integration into the evaluated DETR-style architectures.

Method

This paper proposes the Gaussian-DETR framework, which enhances the video segment retrieval capability of the model by introducing explicit temporal priors into the Transformer decoder. Standard DETR-like methods mostly rely on learnable query embeddings that lack explicit physical meaning. In contrast, our method constructs queries based on a multi-scale Gaussian pyramid, enabling the model to more effectively capture video events with drastically varying temporal spans. The overall architecture of our proposed framework is illustrated in Fig 1.

thumbnail
Fig 1. Architecture diagram of the proposed Gaussian-DETR framework.

The framework leverages multi-scale Gaussian pyramid pooling and dynamic context-aware query initialization to equip decoder queries with explicit temporal prior coordinates (center and scale) alongside instance-specific contextual representation, avoiding unguided global decoding search.

https://doi.org/10.1371/journal.pone.0354458.g001

Multi-scale Gaussian pyramid pooling

Original video streams contain numerous redundant frames, whereas the task objective is solely to extract key action segments. This study designs a multi-scale Gaussian pyramid pooling module as a temporal bottleneck layer to compress and map a video feature sequence V of arbitrary length into a fixed number (N = 112) of query vectors. This module regularizes the input space of the Transformer decoder and introduces multi-scale inductive biases to the model.

The module adopts a set of hierarchical, learnable Gaussian kernels as a soft attention mechanism, replacing traditional uniform sampling. In the implementation, the T temporal positions of the input feature tensor are placed on a uniformly spaced closed interval, for , matching the temporal grid generated by torch.linspace(0, 1, T). For the i-th kernel at pyramid level l, its response weight is computed over as:

(1)

where m(t) is a binary mask that excludes padded frames, and ensures numerical stability. Each kernel is parameterized by a learnable normalized temporal center (constrained via a sigmoid mapping from an unconstrained parameter) and a learnable temporal span in the same normalized coordinate system. In implementation, the raw span parameter is unconstrained and mapped to a positive span as for numerical stability. Through the discrete weighted aggregation , a series of context-aware feature descriptors is obtained.

To capture temporal structure at multiple granularities, we construct a three-level pyramid. Each level initializes proportionally to the reciprocal of its kernel count, scaled by a level-specific factor , i.e., . The configuration is summarized in Table 1.

thumbnail
Table 1. Multi-scale Gaussian pyramid configuration.

https://doi.org/10.1371/journal.pone.0354458.t001

The fine-grained level uses narrow kernels to provide dense local temporal hypotheses for short-duration segments, while the coarse-grained level uses wider kernels to aggregate long-range context. Both and are optimized end-to-end during training.

Design rationale for the multi-scale pyramid configuration.

The choice of three pyramid levels with counts N1 = 64, N2 = 32, N3 = 16 (total 112 queries) is guided by three considerations.

Hierarchical temporal coverage: The pyramid decomposes temporal modeling into three complementary scales corresponding to different event durations. Fine-grained queries use narrow kernels for local temporal neighborhoods, medium-grained queries cover intermediate ranges, and coarse-grained queries aggregate broader temporal context. This design mirrors multi-scale feature hierarchies in convolutional networks, enabling the decoder to simultaneously attend to temporal details at multiple granularities.

Query budget trade-off: Increasing the total query count incurs non-trivial computational overhead and convergence challenges. As shown in the computational complexity analysis, scaling from 10 queries (Moment-DETR baseline) to 112 queries (Gaussian-DETR) increases model-level MAC operations by 62%, mainly because decoder computation scales with the number of queries and the Gaussian initialization adds an additional pooling step. The 64/32/16 split therefore represents a practical balance: dense fine-grained sampling for short-duration events, progressively sparser sampling for coarse contextual coverage, within a query budget that remains tractable for training and inference.

Controlled ablation design: To isolate the contribution of the fine-grained scale from the confounding effect of query quantity, we conduct a fixed-total-query ablation study in the ablation section that removes the fine-grained level (N1 = 0) while redistributing queries to the medium (N2 = 80) and coarse (N3 = 32) levels, maintaining the total at 112. This controlled experiment evaluates whether hierarchical scale structure provides value beyond simply having more queries.

Dynamic context-aware query initialization

Standard DETR architectures typically rely on static query embeddings that are agnostic to the input video. However, efficient temporal localization requires query vectors to be conditioned on specific video instances during the initialization stage. Combining the aforementioned Gaussian pyramid pooling, this paper designs a context-aware dynamic query generation mechanism to simultaneously inject semantic content and positional priors into the Transformer decoder.

The final query input to the decoder is formulated as a fusion of two complementary information sources: learnable semantic prototypes and video-specific contexts. Let be the learnable content embeddings representing global semantic patterns, and let denote the video portion of the encoder output (Section Decoupled feature encoding for unbiased perception). The multi-scale Gaussian pooling module extracts instance-specific context from Mvid rather than from the raw input features, ensuring that the pooled representations incorporate the cross-modal alignment learned by the encoder. The initialized content query at the i-th position is calculated via a residual connection:

(2)

where and is the i-th output of the Gaussian pooling applied to Mvid. This residual fusion allows the model to dynamically adapt to the encoded video context while preserving stable semantic anchors.

Meanwhile, to provide explicit temporal guidance, the module directly utilizes the Gaussian centers to initialize the positional part of the queries. The positional query encodes the center of the corresponding Gaussian kernel using a sinusoidal positional encoding function :

(3)

where is the unconstrained learnable parameter and constrains the center to the valid temporal range [0, 1].

By passing this set of enhanced queries to the decoder, spatiotemporal inductive biases are injected. This strategy encourages each query to initiate its search from a semantically relevant and temporally reasonable position, which may improve scale-specific localization behavior.

Decoupled feature encoding for unbiased perception

A key design choice in our architecture is the strict separation between feature encoding and query-guided decoding. The encoder processes only the video and text inputs without access to any retrieval-specific query priors:

(4)

where ⊕ denotes concatenation along the temporal dimension, and denotes the Transformer encoder. We denote the video portion of the encoded representation as .

This design follows the established DETR encoder-decoder paradigm [22], where the encoder contextualizes the input features and the decoder uses learned queries to produce task-specific set predictions. In our context, this separation serves two purposes:

  1. (1) Query-agnostic cross-modal representation. By excluding query priors from the encoder input, the self-attention mechanism learns video-text alignments without being biased toward specific temporal locations. This makes M a query-agnostic representation of the video-text pair.
  2. (2) Clean context for Gaussian pooling. Because Gaussian pooling extracts context from the encoder output Mvid (Section Dynamic context-aware query initialization), the quality of the pooled representations depends on M being free from query-induced artifacts. If query priors were injected during encoding, the Gaussian pooling would inherit and amplify these biases, potentially degrading localization for events at scales not well-represented by the initial queries.

We emphasize that Gaussian pooling operates as a read-only aggregation over the completed encoder output: it extracts weighted features from Mvid but does not affect the encoder’s internal self-attention computation. This design keeps the Gaussian prior injection outside the encoder and preserves the standard DETR-style separation between encoding and decoding.

Experimental results and analysis

The main experiments of this paper are conducted on QVHighlights, an authoritative benchmark dataset in the field of video moment retrieval. QVHighlights is a highly challenging, large-scale multimodal dataset built from over 10,000 YouTube videos, covering a wide range of topics from everyday activities and travel in lifestyle vlog videos to social and political activities in news videos. This dataset provides precise temporal boundary annotations for each natural language query. The dataset comprises 7,218 training, 1,550 validation, and 1,542 test queries.

Following the standard evaluation protocol, we report scale-specific metrics (Short mAP, Middle mAP, Long mAP) in addition to overall recall (R1@0.5, R1@0.7) and Full mAP. The event-length categories are defined by the ground-truth window duration: Short (10s), Middle (10–30s], and Long (>30s). In the validation set, 429 queries (27.7%) contain at least one short-duration relevant window, 957 (61.7%) contain at least one middle-duration window, and 574 (37.0%) contain at least one long-duration window. The percentages sum to more than 100% because some queries have multiple relevant windows of different durations. Short-event localization is particularly challenging under the QVHighlights evaluation protocol: the 2-second clip length limits the temporal resolution for events lasting only a few seconds, and short events provide fewer salient visual cues for the model to anchor on.

Implementation details

All models use pre-extracted visual features from SlowFast [23] (2,304-dimensional) and CLIP ViT-B/32 visual encoder [24] (512-dimensional), concatenated to form 2,816-dimensional video features, plus 2-dimensional temporal embedding features (per-clip start/end boundaries), yielding an effective video input dimension of 2,818. Text features are extracted using the CLIP text encoder (512-dimensional, last hidden state, max 32 tokens). All features are L2-normalized before input. The feature extractors are frozen during training.

The Transformer encoder and decoder each consist of 2 layers with a hidden dimension of 256, feedforward dimension of 1,024, and 8 attention heads. Input dropout is 0.5 and Transformer dropout is 0.1. The model is trained with the AdamW optimizer (learning rate , weight decay , gradient clipping at 0.1) for 200 epochs with a batch size of 32. The learning rate schedule is StepLR, though the drop epoch (400) exceeds the training duration, effectively keeping the learning rate constant. The span prediction loss is L1 regression on (center, width) with coefficient 10, combined with a GIoU loss (coefficient 1) and a binary cross-entropy classification loss (coefficient 4). A saliency hinge loss (coefficient 1.0, margin 0.2) is applied to the top decoder layer only. Hungarian matching uses the same loss weights. Text positional encoding and contrastive alignment loss are disabled by default.

Experiments and overall performance analysis

This section systematically evaluates Gaussian-DETR on the QVHighlights validation split and compares it with the baseline model Moment-DETR. The main comparison uses 15 matched random seeds and reports the mean and standard deviation. For each seed and method, the checkpoint used in the main comparison was selected according to validation R1@0.5. The core objective of this paper is to evaluate whether explicit temporal priors provide scale-specific benefits, especially for long-duration events, while making the trade-off with overall recall explicit.

Overall performance comparison.

To assess whether the observed differences are robust across random seeds, we performed paired statistical analysis over 15 matched seeds (Table 2). For each metric, we computed the per-seed difference between Gaussian-DETR and Moment-DETR and report the 95% confidence interval of the paired mean difference using Student’s t distribution. Gaussian-DETR achieved a mean Long mAP improvement of +1.98 points, with a 95% confidence interval of [+0.53, + 3.43] and a paired t-test p = 0.0111, providing the strongest statistical support for the proposed temporal prior. For R1@0.5 and R1@0.7, the paired differences are close to zero with confidence intervals that span both positive and negative values, indicating no significant change in overall recall. Short mAP shows a modest positive trend (+0.24), though its confidence interval also overlaps zero.

thumbnail
Table 2. Paired statistical analysis over 15 random seeds on QVHighlights. Differences are computed as Gaussian-DETR minus Moment-DETR.

https://doi.org/10.1371/journal.pone.0354458.t002

Tables 3 and 4 present the performance comparison between Gaussian-DETR and Moment-DETR across primary evaluation metrics, including R1@0.5, R1@0.7, and Short/Long mAP categorized by event temporal length. The optimal epochs for different evaluation metrics are not perfectly aligned. This phenomenon also exists in the baseline model, indicating that when optimizing the overall recall rate further, the model might sacrifice some specialized modeling capability for extreme temporal scales. To ensure a consistent comparison protocol and avoid selecting different checkpoints for individual sub-metrics, all main results are reported using the checkpoints selected by validation R1@0.5. S1 and S2 Appendices provide diagnostic best-per-metric and training-dynamics analyses that characterize metric-specific convergence behavior.

thumbnail
Table 3. Gaussian-DETR validation results. All metrics are percentages; higher is better.

https://doi.org/10.1371/journal.pone.0354458.t003

thumbnail
Table 4. Moment-DETR validation results. All metrics are percentages; higher is better.

https://doi.org/10.1371/journal.pone.0354458.t004

In terms of overall recall, the paired analysis is statistically inconclusive. The paired mean differences for R1@0.5 and R1@0.7 are small and negative, and both confidence intervals include zero. We therefore interpret the overall-recall effect as statistically inconclusive, with a small negative point estimate under this protocol.

On extreme temporal scales, Gaussian-DETR shows its clearest advantage on long-event retrieval. Compared with Moment-DETR, Long mAP increases from 40.70 to 42.68 on average across 15 seeds. The paired confidence interval is fully positive, indicating that this is the most robust scale-specific improvement in our main comparison. Short mAP increases from 3.53 to 3.77 on average, but the paired confidence interval overlaps zero and the absolute values remain low. We therefore report the short-event result as a modest positive trend. The low absolute Short mAP values reflect the inherent difficulty of short-event localization under the QVHighlights evaluation protocol: with a clip length of 2 seconds, a 5-second event spans only 2–3 clips, providing limited temporal resolution for precise boundary regression. Additionally, short events constitute only 27.7% of validation queries, further constraining the signal available for learning short-duration patterns. As shown in Fig 2, Gaussian-DETR provides a scale-specific benefit for long-duration events; the consistency analysis in Fig 3 further supports the long-event retrieval trend across random seeds.

thumbnail
Fig 2. Comparison of Gaussian-DETR and Moment-DETR on QVHighlights under different random seeds.

https://doi.org/10.1371/journal.pone.0354458.g002

thumbnail
Fig 3. Consistency analysis of Long mAP under different random seeds.

https://doi.org/10.1371/journal.pone.0354458.g003

From a practical perspective, the increase in Long mAP from 40.70 to 42.68 (+1.98 points, approximately 4.9% relative) indicates that Gaussian-DETR provides its clearest demonstrated benefit for long-duration moment retrieval. This setting is relevant to queries describing extended activities or context-dependent events, for which successful localization requires preserving evidence over a broad temporal span rather than relying on a single salient short interval. Together with the statistically inconclusive differences in R1@0.5 and R1@0.7 and the low absolute Short mAP, these results characterize Gaussian-DETR as providing a scale-specific gain, with the clearest support on Long mAP under the evaluated protocol.

Analysis of the role of multi-scale Gaussian priors.

Traditional Transformer-based temporal localization models typically rely on implicitly learned query representations, where the temporal attention range is adaptively determined entirely by the attention mechanism. This approach performs well on medium-length events but can exhibit attention-range misalignment—such as an excessively broad or narrow attention range—in scenarios involving extremely long or short events.

By introducing explicit multi-scale Gaussian temporal priors, Gaussian-DETR provides each query with a learnable temporal center () and coverage range (), introducing scale-aware initialization during the decoding stage:

Coarse-grained Gaussian queries (Coarse Scale) have a large temporal coverage range and help aggregate broader context in long videos, reducing context dilution in long events.

Fine-grained Gaussian queries (Fine Scale) are densely distributed along the temporal axis, providing local temporal probes for short-duration segments. This design increases local sampling density, which is consistent with the short-event trend observed in the ablation results.

This explicit temporal structural constraint provides a plausible basis for the observed scale-specific behavior: the main 15-seed analysis supports Long mAP improvement, while Short mAP shows only a modest positive trend.

Ablation studies and mechanistic analysis

This section presents four component-level ablation studies that isolate the contributions of individual design choices in Gaussian-DETR. All ablations share a fixed five-seed subset (42, 2022, 2023, 2024, and 2025) to enable controlled architectural comparisons.

Is the increase in the number of queries the primary reason for performance differences?.

To investigate how much of the observed behavior can be attributed to query quantity, this experiment constructs a Uniform-DETR control baseline. This model maintains the exact same total number of queries as Gaussian-DETR but removes the explicit structural priors provided by Gaussian pooling during the initialization stage, retaining only static learnable semantic content. This setting helps separate the “quantity” and “structure” variables. Relevant results are detailed in Table 5 and Fig 4.

thumbnail
Table 5. Uniform-DETR experimental results on the fixed five-seed ablation subset. All metrics are percentages; higher is better.

https://doi.org/10.1371/journal.pone.0354458.t005

thumbnail
Fig 4. Performance comparison between Gaussian-DETR and Uniform-DETR on extreme temporal scales.

https://doi.org/10.1371/journal.pone.0354458.g004

Experimental Results and Analysis: Within the fixed five-seed ablation subset, the results reveal a trade-off between query quantity and query structure. Uniform-DETR achieves Long mAP (43.49 1.24) comparable to the Gaussian-DETR full-model reference (43.47 1.73), indicating that a high density of unconstrained queries can cover long-span events even without explicit positional guidance. However, this coverage comes with lower overall-recall performance in the same ablation subset: Uniform-DETR’s R1@0.5 (53.66 1.34) falls below Gaussian-DETR (55.73 0.61), suggesting reduced overall-recall stability across random seeds.

These component-level results suggest that simply increasing query count provides a mixed effect. While the additional queries can improve coverage for long events, the lack of explicit temporal anchors may increase query competition during decoding. The multi-scale Gaussian prior is therefore best interpreted as a trade-off mechanism: it combines dense query coverage with temporal structure, rather than proving that the Gaussian prior alone determines Long mAP.

Is the Gaussian distribution superior to unstructured global context?.

Experimental Setup: To evaluate the role of explicit temporal structures in context aggregation, this section replaces the Gaussian-weighted pooling module with standard Masked Global Average Pooling to construct an unstructured pooling variant (Uniform Pooling). This variant assigns uniform weights to all frames along the temporal dimension to aggregate the visual features of the entire video sequence, simulating traditional context modeling approaches that lack temporal positional priors. Relevant experimental results are shown in Table 6 and Fig 5.

thumbnail
Table 6. Experimental results of unstructured global pooling (Uniform Pooling) on the fixed five-seed ablation subset. All metrics are percentages; higher is better.

https://doi.org/10.1371/journal.pone.0354458.t006

thumbnail
Fig 5. Performance comparison between structured Gaussian pooling and unstructured global pooling.

https://doi.org/10.1371/journal.pone.0354458.g005

Experiments and Result Analysis: Within the fixed five-seed ablation subset, global average pooling achieves Long mAP (44.03 0.89) slightly higher than the Gaussian-DETR full-model reference (43.47 1.73). Since long-term events span most of the video, their features are distributed broadly along the temporal axis; uniform aggregation over all frames naturally captures this coarse-grained context. This component-level finding highlights that for long-event retrieval specifically, unstructured global context can be competitive with structured pooling.

However, the global pooling variant shows lower R1@0.5 (54.00 0.42 vs. 55.73 0.61) and Short mAP (3.84 0.42 vs. 4.04 0.36) compared to Gaussian-DETR in the same ablation subset. The uniform averaging operation assigns equal weight to both relevant and irrelevant frames, which can dilute local temporal signals needed for precise boundary regression. The multi-scale Gaussian pooling instead concentrates weight around each query’s temporal center while still allowing context through the kernel width, suggesting a better balance between long-range coverage and local specificity.

Is the fine-grained scale necessary for short-term actions?.

To analyze the contribution of the fine-grained layer in the multi-scale design, this section constructs two ablation variants. The first removes the fine-grained layer and reduces total query count from 112 to 48 (Original Ablation). The second removes the fine-grained layer while redistributing queries to maintain 112 total (Fixed-Query Ablation), isolating the contribution of scale structure from query quantity. Relevant experimental results are shown in Table 7 and Fig 6.

thumbnail
Table 7. Ablation study of fine-grained scale on the fixed five-seed ablation subset. Original ablation removes Fine (N1 = 64, total 48 queries). Fixed-query ablation redistributes to Medium (80) + Coarse (32), keeping total at 112. All metrics are percentages; higher is better. The full-model reference is the five-seed ablation-subset mean and standard deviation.

https://doi.org/10.1371/journal.pone.0354458.t007

thumbnail
Fig 6. Impact of fine-grained scale on short-term actions and local temporal sampling.

https://doi.org/10.1371/journal.pone.0354458.g006

Experimental Results and Analysis: Within the fixed five-seed ablation subset, removing fine-grained queries directly causes a decline in performance across all metrics. In the original ablation (total 48 queries), Short mAP decreases from 4.04 to 3.94 and R1@0.5 decreases from 55.73 to 55.22. However, this comparison conflates two effects: the loss of fine-grained temporal sampling and the reduction in total query count.

To isolate the contribution of hierarchical scale structure, the fixed-query ablation maintains 112 total queries by redistributing the fine-grained slots to medium (80) and coarse (32) scales. Even with the same query budget, removing the fine-grained level yields a 1.21-point lower R1@0.5 (55.73 vs. 54.52) and a 0.26-point lower Long mAP (43.47 vs. 43.21) within this ablation setting. This suggests that the fine-grained layer contributes useful high-frequency temporal sampling that is not fully compensated by simply increasing medium and coarse queries. The Short mAP decline (4.04 vs. 3.68, −8.9%) is component-level evidence for local temporal sampling, while the main 15-seed results keep the short-event conclusion limited to a modest trend.

This performance drop is consistent with a mismatch between query scale and event duration. Short actions occupy few clips, whereas medium and coarse queries use wider Gaussian spans. When only wider queries are available, local evidence for a short target can be averaged with surrounding context, weakening boundary cues.

By introducing high-density, narrow-bandwidth temporal probes, fine-grained queries increase the density of local temporal hypotheses available to the decoder. This mechanism may help preserve local responses for fleeting actions, although the main 15-seed results show that Short mAP remains low in absolute terms and only exhibits a modest trend.

Sensitivity to the fine-scale kernel-width scaling factor.

Experimental Setup: To examine the effect of fine-scale temporal prior width, this section reports a two-setting sensitivity check on the fine-scale kernel-width scaling factor s1. According to the initialization rule , the main configuration uses s1 = 1.0, whereas the narrower variant uses s1 = 0.5; the medium- and coarse-scale settings remain unchanged. This comparison evaluates the effect of narrowing the fine-scale initialization while keeping the medium- and coarse-scale settings fixed. Relevant results are shown in Table 8 and Fig 7.

thumbnail
Table 8. Results for the narrower fine-scale kernel-width initialization setting s1 = 0.5 on the fixed five-seed ablation subset. The main s1 = 1.0 reference is reported in the Full Model row of Table 7; the medium- and coarse-scale settings remain unchanged. All metrics are percentages; higher is better.

https://doi.org/10.1371/journal.pone.0354458.t008

thumbnail
Fig 7. Sensitivity to the fine-scale kernel-width scaling factor under two initialization settings.

https://doi.org/10.1371/journal.pone.0354458.g007

Experimental Results and Analysis: Compared with the full-model reference using s1 = 1.0 in Table 7, the s1 = 0.5 variant yields lower R1@0.5 and Long mAP, without a clear benefit for short-event retrieval. These results indicate sensitivity to a narrower fine-scale initialization, particularly for R1@0.5 and Long mAP. Because the Gaussian spans remain learnable during training, this result characterizes sensitivity to the initialization width under the tested two-setting comparison.

Taken together, the main comparison and ablation studies indicate that Gaussian-DETR is best interpreted as a scale-aware query initialization mechanism whose clearest empirical benefit is long-event retrieval. These ablations characterize the empirical trade-offs among query quantity, temporal structure, and pooling strategy, while more detailed causal analysis of the underlying attention dynamics is left for future work.

Architectural compatibility with QD-DETR

To examine whether the proposed Gaussian prior can be integrated into another DETR-like architecture, we apply it to QD-DETR [9] while retaining the original feature setting and encoder interaction mechanisms. This experiment evaluates compatibility with one additional DETR-like architecture rather than broad architectural generalization. The modification is limited to decoder-query construction: multi-scale Gaussian pooling is applied to the completed encoder output, and the pooled representations are used for context-aware query initialization.

Table 9 reports both same-protocol QD-DETR comparisons and literature-reported results from recent methods. The lower block provides contextual reference only, because these studies use different feature settings, training protocols, and metric reporting.

thumbnail
Table 9. Performance comparison on QVHighlights. All metrics are percentages; higher is better. Upper block: same QD-DETR base architecture and SlowFast+CLIP features. Lower block: literature-reported results under different settings. For literature rows, “Full” denotes the reported overall/average mAP; “–” indicates an unavailable or unreported metric.

https://doi.org/10.1371/journal.pone.0354458.t009

Under the same protocol, Gaussian-QD-DETR improves over the vanilla QD-DETR baseline across all reported metrics, including R1@0.5 (), Full mAP (), and Short mAP (). The literature rows place this result in the range of recent temporal grounding methods, while the protocol differences preclude a strict state-of-the-art ranking.

Auxiliary evaluation on Charades-STA

In addition to QVHighlights, we include Charades-STA as a secondary benchmark [1]. Table 10 reports this auxiliary evaluation. Both Moment-DETR and Gaussian-DETR are trained and evaluated with the same available SlowFast+CLIP feature pipeline, so the result is interpreted as a controlled within-pipeline comparison.

thumbnail
Table 10. Auxiliary evaluation on Charades-STA. Results are reported over two random seeds (2022 and 2023) under the same available SlowFast+CLIP reproduction pipeline. All metrics are percentages; higher is better.

https://doi.org/10.1371/journal.pone.0354458.t010

Under this limited two-seed setting, Gaussian-DETR shows no clear advantage over Moment-DETR on Charades-STA, with small observed differences of −0.15 points in R1@0.5 and −0.53 points in R1@0.7. This auxiliary evaluation provides an additional within-pipeline benchmark check; the strongest empirical support remains the Long mAP improvement on QVHighlights.

Computational complexity analysis

To assess the practical overhead introduced by the Gaussian prior module, we compare parameter counts, multiply-accumulate operations (MACs), and inference latency between Moment-DETR and Gaussian-DETR (Table 11). MACs are estimated analytically for a single forward pass with input length Lvid = 75 clips and Ltxt = 32 tokens. Latency is measured on an NVIDIA H800 GPU with batch size 32, averaged over 100 iterations after 10 warm-up iterations.

thumbnail
Table 11. Computational complexity comparison.

https://doi.org/10.1371/journal.pone.0354458.t011

Gaussian-DETR introduces a parameter overhead of only +0.6% (26,848 additional parameters), mainly due to the expansion of the query content embeddings from 10 to 112 slots, with smaller contributions from the Gaussian pooling parameters and query normalization. The MAC overhead is + 62%, corresponding to approximately 0.19G additional MACs at the model level. This increase mainly reflects query-dependent decoder computation: decoder cross-attention scales approximately linearly with the number of queries, whereas decoder self-attention scales quadratically through query-query interactions. In contrast, Gaussian pooling itself is a lightweight weighted aggregation over temporal clips. The module therefore introduces a measurable computational cost, but the measured model-level latency remains below 5 ms per batch-size-32 forward pass on the tested GPU.

Practical deployment considerations. Although the Gaussian prior module introduces only a small parameter increase, expanding the decoder query set from 10 to 112 produces a measurable computational cost. Under the tested setting, the model-level forward latency remains below 5 ms on an NVIDIA H800 GPU with a batch size of 32. The measurement covers model-level forward latency with pre-extracted features; video decoding, visual and textual feature extraction, and data-transfer overhead are outside this timing protocol. In latency-sensitive or resource-constrained deployments, the query budget may need to be adjusted according to the target hardware, batch size, input sequence length, and application-level latency requirements.

Summary

Through quantitative experiments and ablation analyses, this section characterizes Gaussian-DETR as a scale-specific temporal prior for query initialization. Its most consistent benefit appears in long-event retrieval, and the ablations indicate that structured Gaussian queries provide a better balance than simply increasing query count or using unstructured global pooling. These controls suggest that the benefit comes from coupling long-event coverage with local temporal specificity rather than from query density alone.

The explicit multi-scale Gaussian prior introduced in this paper is best understood as a structured trade-off between temporal coverage and localization specificity. Fine-grained temporal probes increase local sampling density, while wider Gaussian kernels aggregate long-range context. The combination is best characterized as a scale-specific prior that biases decoder queries toward long-duration temporal hypotheses.

Experimental results integrating this prior module into the QD-DETR architecture further support compatibility beyond the Moment-DETR baseline. Because this strategy focuses on the initial construction stage of decoder queries while leaving the framework’s underlying feature interaction and loss calculation logic unchanged, it can be studied as a parameter-efficient scale-aware initialization component for DETR-like video moment retrieval models.

Discussion

Mechanism decoupling in multi-scale modeling

An inherent tension exists between temporal span and resolution in video understanding: capturing global semantics requires a large temporal receptive field, while precise boundary estimation benefits from high temporal resolution. Gaussian-DETR addresses this tension at the query-initialization stage by assigning decoder queries to temporal hypotheses with different centers and spans. Coarse-grained queries provide broader temporal coverage, whereas fine-grained queries provide denser local sampling. This structure is consistent with the observed trade-off in our experiments: long-event retrieval benefits most consistently, while short-event localization remains difficult under the current QVHighlights protocol.

Convergence patterns of temporal feature learning

The training-dynamics analysis in S2 Appendix shows that overall recall and scale-specific metrics do not necessarily peak at the same epoch. In particular, the epoch selected by R1@0.5 can differ from the epoch that gives the highest Long mAP. This pattern indicates that overall retrieval quality and scale-specific temporal modeling follow partially different optimization trajectories. The explicit Gaussian prior provides structured temporal hypotheses throughout training, which may help preserve long-span candidates even when the checkpoint is selected by an overall-recall criterion. This motivates the separation between the main R1@0.5-selected comparison and the diagnostic best-per-metric analysis in S1 Appendix.

Conclusion

This paper proposes Gaussian-DETR, a video temporal localization framework that initializes Transformer decoder queries via explicit multi-scale Gaussian temporal priors. Distinct from existing end-to-end models relying on implicit queries, this method directly parameterizes temporal center and scale information and injects them into the decoding hypothesis space, providing explicit temporal structural guidance. Combined with Gaussian pyramid pooling and context-aware initialization, Gaussian-DETR improves long-event retrieval under the tested QVHighlights protocol. Experiments also show limited change in overall recall and a modest short-event trend, characterizing Gaussian-DETR as a scale-specific temporal prior module with its clearest empirical support on long-event retrieval. Looking forward, the broader principle of explicit temporal-prior injection could be explored in recent large vision-language models and end-to-end video foundation models, where Gaussian or mixture-based temporal hypotheses may provide controllable temporal structure for long-video grounding. Such extensions would require joint optimization and evaluation within foundation-model feature extraction and training pipelines and are left for future work. These results position Gaussian temporal priors as a parameter-efficient mechanism for studying structurally guided query initialization within DETR-like video moment retrieval architectures.

Limitations and future work

Gaussian-DETR studies explicit temporal priors within a pre-extracted feature framework, where the underlying visual encoder is not jointly optimized according to feedback from the Gaussian temporal priors. This decoupled setting of feature extraction and temporal decoding may limit the model’s performance upper bound in end-to-end complex action localization tasks.

Event-structure limitations. Each Gaussian query encodes a unimodal temporal hypothesis through a single center and span, making the current parameterization most directly aligned with temporally continuous single-interval moments. The complete query set can cover multiple temporal regions, but fragmented or irregularly distributed evidence would require coordinated multi-query representations or richer prior families. Concurrent or strongly overlapping events similarly motivate asymmetric or mixture-based temporal priors, together with query-coordination mechanisms, to model fragmented, overlapping, and multi-instance event structures more flexibly.

Benchmark coverage and protocol scope. The main empirical evidence comes from QVHighlights, where Gaussian-DETR shows its most consistent benefit on Long mAP. The Charades-STA experiment provides an auxiliary same-pipeline check under the available reproduction setting. Extending the evaluation to ActivityNet Captions [28] and additional long-video benchmarks remains future work, as these datasets require separate feature-extraction and training protocols.

Future work will primarily focus on three directions: exploring adaptive distribution modeling mechanisms to enhance the flexibility of prior shapes for fragmented or asymmetrical action boundaries; extending the approach to online or streaming settings where causal feature updates and incremental Gaussian query initialization are required; and adapting explicit position-aware initialization to long-sequence architectures, such as state space models, to improve temporal modeling efficiency for complex video events.

Supporting information

S1 Appendix. Diagnostic best-per-metric analysis.

This file reports the independent best-per-metric diagnostic analysis for Moment-DETR and Gaussian-DETR on the fixed five-seed subset.

https://doi.org/10.1371/journal.pone.0354458.s001

(PDF)

S2 Appendix. Training dynamics analysis of long-term performance.

This file provides the representative-seed training-dynamics analysis for R1@0.5 and Long mAP on QVHighlights.

https://doi.org/10.1371/journal.pone.0354458.s002

(PDF)

Acknowledgments

During the preparation of this work, the authors used ChatGPT to polish the English language and improve the readability of the manuscript. The authors reviewed and edited the content as needed and take full responsibility for the content of the manuscript.

References

  1. 1. Gao J, Sun C, Yang Z, Nevatia R. TALL: temporal activity localization via language query. 2017 IEEE International Conference on Computer Vision (ICCV); 2017. p. 5277–85. https://doi.org/10.1109/iccv.2017.563
  2. 2. Hendricks LA, Wang O, Shechtman E, Sivic J, Darrell T, Russell B. Localizing moments in video with natural language. 2017 IEEE International Conference on Computer Vision (ICCV); 2017. p. 5804–13. https://doi.org/10.1109/iccv.2017.618
  3. 3. Zhu D, Chen J, Shen X, Li X, Elhoseiny M. MiniGPT-4: enhancing vision-language understanding with advanced large language models. ArXiv:2304.10592; 2023. Available from: https://arxiv.org/abs/2304.10592
  4. 4. Wang Y, Wang Z, Xu B, Du Y, Lin K, Xiao Z, et al. Time-R1: post-training large vision language model for temporal video grounding. ArXiv:2503.13377; 2025. Available from: https://arxiv.org/abs/2503.13377
  5. 5. Lin B, Ye Y, Zhu B, Cui J, Ning M, Jin P, et al. Video-LLaVA: learning united visual representation by alignment before projection. ArXiv:2311.10122; 2023. Available from: https://arxiv.org/abs/2311.10122
  6. 6. Chen B, Yue Z, Chen S, Wang Z, Liu Y, Li P, et al. LVAgent: long video understanding by multi-round dynamical collaboration of MLLM agents. ArXiv:2503.10200; 2025. Available from: https://arxiv.org/abs/2503.10200
  7. 7. Lei J, Berg TL, Bansal M. QVHighlights: detecting moments and highlights in videos via natural language queries. ArXiv:2107.09609; 2021. Available from: https://arxiv.org/abs/2107.09609
  8. 8. Sun H, Zhou M, Chen W, Xie W. TR-DETR: task-reciprocal transformer for joint moment retrieval and highlight detection. Proc AAAI Conf Artif Intell. 2024;38(5):4998–5007.
  9. 9. Moon W, Hyun S, Park S, Park D, Heo JP. Query-dependent video representation for moment retrieval and highlight detection. ArXiv:2303.13874; 2023. Available from: https://arxiv.org/abs/2303.13874
  10. 10. Gordeev A, Dokholyan V, Tolstykh I, Kuprashevich M. Saliency-guided DETR for moment retrieval and highlight detection. ArXiv:2410.01615; 2024. Available from: https://arxiv.org/abs/2410.01615
  11. 11. Park S, Choi J, Baek K, Shim H. MomentMix augmentation with length-aware DETR for temporally robust moment retrieval. ArXiv:2412.20816; 2024. Available from: https://arxiv.org/abs/2412.20816
  12. 12. Bodla N, Singh B, Chellappa R, Davis LS. Soft-NMS – Improving object detection with one line of code. ArXiv:1704.04503; 2017. Available from: https://arxiv.org/abs/1704.04503
  13. 13. Liu S, Li F, Zhang H, Yang X, Qi X, Su H, et al. DAB-DETR: dynamic anchor boxes are better queries for DETR. ArXiv:2201.12329; 2022. Available from: https://arxiv.org/abs/2201.12329
  14. 14. Zheng M, Huang Y, Chen Q, Peng Y, Liu Y. Weakly supervised temporal sentence grounding with gaussian-based contrastive proposal learning. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR); 2022. p. 15534–43. https://doi.org/10.1109/CVPR52688.2022.01511
  15. 15. Li H, Shu X, He S, Qiao R, Wen W, Guo T, et al. D3G: exploring Gaussian prior for temporal sentence grounding with glance annotation. ArXiv:2308.04197; 2023. Available from: https://arxiv.org/abs/2308.04197
  16. 16. Hao J, Sun H, Ren P, Wang J, Qi Q, Liao J. Query-aware video encoder for video moment retrieval. Neurocomputing. 2022;483:72–86.
  17. 17. Tang J, Wei Z, Zhu Y, Shi C, Li G, Lin L, et al. Sim-DETR: unlock DETR for temporal sentence grounding. ArXiv:2509.23867; 2025. Available from: https://arxiv.org/abs/2509.23867
  18. 18. Wang Y, Liu Z, Sun X, Wang J, Liu H. Length matters: length-aware transformer for temporal sentence grounding. ArXiv:2508.04299; 2025. Available from: https://arxiv.org/abs/2508.04299
  19. 19. Kim S, Cho J, Yu J, Yoo Y, Choi JY. Gaussian mixture proposals with pull-push learning scheme to capture diverse events for weakly supervised temporal video grounding. Proc AAAI Conf Artif Intell. 2024;38(3):2795–803.
  20. 20. Zhang CL, Wu J, Li Y. ActionFormer: localizing moments of actions with transformers. Computer Vision – ECCV 2022. vol. 13664. Springer; 2022. p. 492–510. https://doi.org/10.1007/978-3-031-19772-7_29
  21. 21. Zhang S, Peng H, Fu J, Luo J. Learning 2D temporal adjacent networks for moment localization with natural language. ArXiv:1912.03590; 2019. Available from: https://arxiv.org/abs/1912.03590
  22. 22. Carion N, Massa F, Synnaeve G, Usunier N, Kirillov A, Zagoruyko S. End-to-end object detection with transformers. Computer Vision – ECCV 2020: 16th European Conference; 2020 Aug 23–28; Glasgow, UK, Proceedings, Part VI. Springer; 2020. p. 213–29. https://doi.org/10.1007/978-3-030-58452-8_13
  23. 23. Feichtenhofer C, Fan H, Malik J, He K. SlowFast networks for video recognition. Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV); 2019. p. 6201–10. https://doi.org/10.1109/ICCV.2019.00630
  24. 24. Radford A, Kim JW, Hallacy C, Ramesh A, Goh G, Agarwal S, et al. Learning transferable visual models from natural language supervision. Proceedings of the 38th International Conference on Machine Learning (ICML); 2021. p. 8748–63. Available from: https://proceedings.mlr.press/v139/radford21a.html
  25. 25. Lin KQ, Zhang P, Chen J, Pramanick S, Gao D, Wang AJ, et al. UniVTG: towards unified video-language temporal grounding. Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV); 2023. p. 2782–92. https://doi.org/10.1109/ICCV51070.2023.00262
  26. 26. Jang J, Park J, Kim J, Kwon H, Sohn K. Knowing where to focus: event-aware transformer for video grounding. Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV); 2023. p. 13800–10. https://doi.org/10.1109/ICCV51070.2023.01273
  27. 27. Moon W, Hyun S, Lee S, Heo JP. Correlation-guided query-dependency calibration for video temporal grounding. ArXiv:2311.08835; 2023. Available from: https://arxiv.org/abs/2311.08835
  28. 28. Krishna R, Hata K, Ren F, Fei-Fei L, Niebles JC. Dense-captioning events in videos. 2017 IEEE International Conference on Computer Vision (ICCV); 2017. p. 706–15. https://doi.org/10.1109/iccv.2017.83