Token-space bottleneck
Joint audio–visual streams quickly inflate context length, memory use, and Time to First Token for long recordings and repeated queries.
Under Submission
Compress long audio–visual recordings into reusable LoRA memory, then answer queries with zero multimodal tokens in the active context window.
University of Maryland, College Park
Omni2LoRA internalizes audio–visual recordings into reusable LoRA memory, replacing long token context with compact parameter memory for repeated querying.
Overview
Omnimodal language models reason jointly over video and audio, but long recordings generate large synchronized token streams. Token pruning helps, yet aggressive compression can discard the temporal audio–visual anchors needed for coherent reasoning.
Omni2LoRA takes a different route: it processes a recording once, converts the recording into an instance-specific LoRA adapter, and reuses that compact parameter state for all later questions. The frozen omni model answers from text plus the adapter rather than repeatedly carrying audio and visual tokens through the active prompt.
Joint audio–visual streams quickly inflate context length, memory use, and Time to First Token for long recordings and repeated queries.
Independent pruning can preserve salient unimodal features while removing the brief synchronized cues that only become meaningful across modalities.
Omni2LoRA encodes the recording into a reusable adapter and learns which rank directions to keep under a fixed memory budget.
Method
Full-rank hypernetwork training captures the recording; coherence-aware rank allocation makes that memory compact without sacrificing the audio–visual dependencies that matter.
Stage 1: a frozen omni encoder produces intermediate representations consumed by a Perceiver hypernetwork to generate candidate LoRA slots. Stage 2: a scoring policy selects a fixed-budget subset and is optimized with coherence-aware GRPO using joint, visual-only, and audio-only reference rollouts.
A Perceiver hypernetwork maps synchronized audio–visual hidden states into layer-wise, recording-specific LoRA weights in a single forward pass while the omni backbone remains frozen.
A trainable allocation policy selects a compact subset of candidate rank directions under a fixed budget instead of applying a uniform or magnitude-only rule.
Joint audio–visual rewards are contrasted with visual-only and audio-only counterfactuals so the policy is rewarded for preserving information that depends on both modalities.
The compact adapter is generated once and reused. Subsequent questions are answered with no audio or video tokens in the active context, turning recording encoding into an amortized setup cost.
Results
Main comparison at a 30% retained-rank budget and 32 frames. Average combines DailyOmni, UGC-AVQA, OmniVideo, and WorldSense according to the paper’s reported metrics.
Qwen2.5-Omni-3B
average score
InteractiveOmni-4B
average score
Qwen2.5-Omni-7B
average score
Detailed benchmark comparison
| Method | DailyOmni | UGC-AVQA | OmniVideo | WorldSense | Average |
|---|---|---|---|---|---|
| Full Tokens | 56.3 | 54.1 | 34.6 | 43.6 | 47.2 |
| OmniZip | 51.8 | 52.7 | 30.0 | 39.6 | 43.5 |
| OMAC | 53.6 | 53.2 | 30.9 | 42.4 | 45.0 |
| O-MARC | 60.4 | 64.6 | 35.2 | 44.0 | 51.1 |
| Omni2LoRA | 63.6 | 68.0 | 36.6 | 45.8 | 53.2 |
Compression robustness
Omni2LoRA remains strongest as the memory constraint tightens, while token-pruning baselines degrade more sharply.
Long-recording scaling
Parametric internalization stays stable as recording length grows, while direct in-context inference collapses near context limits.
Efficiency
Repeated questions expose the advantage of moving the recording into parameter memory: the initial internalization cost is paid once, while later queries avoid multimodal context processing.
Single-question TTFT · 7B
Omni2LoRA vs. 6.03s for full-context inference and 3.45s for O-MARC.
After 5 queries · 7B
Amortized query latency drops rapidly as the one-time adapter construction cost is spread across interactions.
Long-run plateau
The reusable adapter removes repeated audio–visual encoding from the answer path.
Takeaways
Citation
@misc{mathur2027omni2lora,
title = {Omni2LoRA: Coherence-Preserving Parametric Memory for Efficient Omni Language Models},
author = {Puneet Mathur and Manan Suri and Dinesh Manocha},
year = {2027},
note = {Under submission}
}