Conceptio › Archive › arXiv CS
arXiv CSopen access

Information Router for Mitigating Modality Dominance in Vision-Language Models

2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
neural-networks
machine learning, deep learning, neural networks

INFORMATION ROUTER FOR MITIGATING MODALITY DOMINANCE IN VISION-LANGUAGE MODELS Seulgi Kim, Mohit Prabhushankar, Ghassan AlRegib

arXiv:2604.16264v1 [cs.CV] 17 Apr 2026

OLIVES at the Center for Signal and Information Processing CSIP, School of Electrical and Computer Engineering, Georgia Institute of Technology, Atlanta, GA, USA {seulgi.kim, mohit.p, alregib}@gatech.edu ABSTRACT Vision Language models (VLMs) have demonstrated strong performance across a wide range of benchmarks, yet they often suffer from modality dominance, where predictions rely disproportionately on a single modality. Prior approaches primarily address this issue by steering model’s attention allocation, implicitly assuming that all modalities provide sufficient information. However, attention only determines where the model focuses, and cannot enrich information that is missing or ambiguous. In the real world, input modalities often differ in information density and their signal-to-noise ratios. In such cases, simply adjusting model’s attention does not resolve the underlying lack of information. In this paper, we propose M O IR: Multi-modal Information Router, an information-level fusion method that explicitly reduces information disparity prior to fusion. M O IR identifies less informative tokens and routes complementary information from a stronger modality, constructing information-dense token representations before they are processed by a large language model. By modifying information availability, M O IR enables reliable shifts in modality dominance, even when one modality is degraded. We evaluate M O IR on three widely used multi-modal benchmarks across multiple model backbones. Experimental results show that M O IR consistently demonstrates more balanced modality contribution, and improves robustness and downstream performance, particularly even under modality degradation. These findings demonstrate that explicitly modifying cross-modal information is an effective and complementary strategy for mitigating modality dominance in multi-modal reasoning models. Index Terms— Multi-modal learning, Modality dominance, Vision-Language Models 1. INTRODUCTION Vision-Language Models (VLMs) have achieved strong performance across a wide range of benchmarks [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]. Despite this progress, modality dominance, where models often rely disproportionately on a single modality, remains a persistent challenge [3, 6, 13, 14, 15]. This work is supported by the ML4Seismic Consortium at Georgia Tech.

Fig. 1: This figure compares between existing VisionLanguage model architecture and M O IR. Red arrows indicate attention flow from the LLM decoder to modality-specific tokens. The width of each arrow represents the average attention magnitude per token. (a) Modality-specific tokens are directly fed into the LLM decoder, without accounting for cross-modal information disparity. As a result, differences in information density across modalities lead to imbalanced attention allocation and modality dominance. (b) M O IR selectively routes complementary information from the other modality to construct information-dense tokens. By reducing token-level information disparity, M O IR enables more balanced attention flow across modalities.

Especially, vision-language models may produce correct answers while paying little attention to visual evidence [3, 13], raising the question of whether improved accuracy reflects genuine multi-modal reasoning or uni-modal shortcuts. This can cause performance failure, especially when one modality is corrupted and a complementary modality is needed [3, 6, 13, 14, 15]. As a result, understanding and mitigating modality dominance is essential for building reliable multi-modal systems [3, 6, 13, 14, 15]. Recent works have proposed various methods to mitigate modality dominance [3, 6, 13, 14, 15]. As shown in Figure 1 (a), these approaches diagnose modality dominance through the magnitude of attention weights, and mitigate the modality dominance by steering the model’s attention allocation [13]. While effective, these approaches implicitly assume that both input modalities already contain sufficient information, and that dominance arises mainly from the attention imbalance.

However, in the real world, modalities often differ substantially in information density. For example, as shown in Figure 1 (a-b), visual tokens may be sparse or ambiguous due to exocentric view or viewpoint limitations, while language tokens tend to be dense and semantically explicit. When such heterogeneous tokens are jointly processed without accounting for this information disparity, information imbalance across modalities can manifest as modality dominance. To counter this information disparity, we propose M O IR: Multi-modal Information Router, a multi-modal fusion method that explicitly routes information prior to fusion. Here, we define a token to be informative if its embedding contributes strongly to the dominant directions of the representation space, following the intuition in [16, 17, 18]. As illustrated in Figure 1 (b) and Figure 2, M O IR selectively routes complementary information across modalities to construct information-dense tokens, thereby reducing information disparity between modalities before fusion. In addition, we show that such information routing leads to lower Attention Efficiency Index (AEI) values, indicating more balanced modality usage. To assess the effectiveness of M O IR, we conduct comprehensive experiments on three widely used datasets and model backbones. Our key contributions are: 1. We propose M O IR, a multi-modal fusion method with a cross-modal information exchange, which addresses the modality dominance problems. 2. We revisit the definition of modality dominance and show that changing the modality usage without considering the evidential status of each modality can be unreliable when a modality is noisy or uninformative. 3. We provide extensive empirical results showing that M O IR consistently changes modality contribution and improves robustness and/or downstream performance across diverse datasets and models. 2. RELATED WORK 2.1. Multi-modal Fusion Multi-modal learning aims to integrate heterogeneous data sources to achieve performance superior to unimodal approaches [19, 1, 2]. Fusion strategies are broadly categorized into three strategies. First, aggregation-based fusion strategies combine features through concatenations, summation, or attention pooling [20]. Second, alignment-based fusion methods temporally or semantically align modality representations [21, 2, 17]. Finally, hybrid approaches integrate both aggregation and alignment techniques [22]. Despite their architectural advances, these fusion strategies often suffer from feature redundancy, where redundant or less informative features from one modality can overwhelm the shared representation space, resulting in suboptimal fusion [17]. Our method addresses this limitation by selectively routing complementary information across modalities, improving the informativeness of token representations for both modalities.

Fig. 2: Overview of M O IR. Modality A and Modality B are first encoded into token sequences T 1, T 2, T 3, T 4. The color intensity of each token represents its informativeness. For example, lighter color indicates sparse and less informative tokens and darker colors indicate dense and more informative tokens. M O IR identifies less informative channels within tokens and adaptively routes information from a complementary modality before tokens are processed by the LLM decoder.

2.2. Modality Dominance

Multi-modal models frequently exhibit a bias toward specific modalities while neglecting others. This phenomenon has been extensively discussed in the literature under various definitions, including modality dominance [13], modality collapse [3, 14], and the greedy nature of learning [3, 4]. First, a significant body of research predominantly focuses on rectifying the learning trajectory by manipulating loss functions or gradient flows during training. Specifically, [4, 14, 5, 23] posits that models inherently prioritize modalities that are easier to learn, which causes the optimization or gradient flow of other modalities to stagnate prematurely. Other studies have focused on internal model mechanics. [13] argues that non-text modalities suffer from token redundancy compared to the high information density of text. This leads the model to disproportionately allocate attention to text tokens. Also, [15, 6] highlight the data’s intrinsic characteristics, such as modality-agnostic questions that can be answered using text priors alone or lack of semantic completeness in video-query pairs. While these approaches mitigate modality dominance by changing model architecture or training dynamics, they often overlook the fundamental characteristics of the input data itself. These methods implicitly assume that the issue lies solely in the model’s processing, neglecting the information disparity inherent in the input tokens prior to fusion. In contrast, M O IR addresses the root cause by explicitly routing token information density before fusion.

3. METHODOLOGY This section presents M O IR: Multi-modal Information Router, which controls the information flow between modalities. As illustrated in Figure 2, M O IR operates between modality-specific encoders and the LLM decoder, where modality dominance often manifests as imbalanced information utilization. Here, unlike previous methods that enforce balanced attention, M O IR directly modifies token representations before fusion by routing complementary information into less informative channels. 3.1. Multi-modal Token Representations Given a multi-modal input consisting of two modalities, we first obtain modality-specific token representations using their respective encoders, as denoted in Figure 2 as T 1, T 2, T 3, T 4. Let FA ∈ RB×LA ×D , FB ∈ RB×LB ×D denote the token sequences of modality A and modality B, respectively, where B is the batch size, LA and LB are the numbers of tokens produced by each encoder, and D is the embedding dimension used by the LLM. Then, each token t from modality A is given by ftA ∈ RD , whose dimensions are referred to as channels. These tokens encode modalityspecific information and serve as inputs to the information router prior to fusion by the LLM decoder. 3.2. Identifying Less informative Tokens

SdA =

A 2 (σiA )2 (vi,d ) .

(1)

i=1

This measures contribution of each channel to the principal components of the token representation. Channels with low SdA are considered less informative, and tokens dominated by such channels provide limited information. The same procedure is applied to modality B to obtain SdB . For each modality, we select the bottom k ′ channels with the lowest informativeness scores as candidates for information routing: A A Dless informative = Bottomk′ Sd ,

F̄A :,:,D A

less informative

= αDA ·FB :,:,D A

less informative

+(1 − αDA )·FA :,:,D A

less informative

(3) with the same formulation applied to modality B. Here, αDA , αDB are learnable routing gates that control the amount of information injected into each channel. This routing mechanism allows M O IR to directly modify the information carried by tokens before fusion, enhancing the informativeness of less informative tokens while preserving already informative components. 3.4. Integration with the LLM Decoder As shown on the top of Figure 2, the routed token sequences F̄A and F̄B are concatenated and passed to the LLM decoder. By routing complementary information into less informative channels, M O IR enables the LLM to naturally adjust its reliance across modalities based on the available information. In Section 4, we show that this information routing also leads to increased Attention Efficiency Index (AEI) values and more balanced modality contribution, indicating that changes in modality usage emerge as a consequence of improved information availability. 4. EXPERIMENTS

Not all tokens contribute equally to multi-modal reasoning. In practice, a token can be ineffective, or less informative, when its representation is dominated by weak, noisy, or redundant channels. M O IR identifies these less informative channels as the underlying cause of less informative tokens, and uses them to determine where information routing is required. For modality A, we reshape the token sequence FA ∈ RB×LA ×D into X̃ A ∈ R(B·LA )×D , and perform singular value decomposition: X̃ A = U A ΣA (V A )⊤ , where ΣA = diag(σ1A , . . . , σrA ) and V A = [v1A , . . . , vrA ]. We define the informativeness score for channel d as r X

by routing complementary information to compensate for insufficient information along these channels. Specifically, for modality A, the routed token sequence is computed as

B B Dless informative = Bottomk′ Sd . (2)

3.3. Multi-Modal Information Routing Once less-informative channels are identified, as shown in Figure 2, M O IR selectively modifies token representations

In this section, we evaluate the effectiveness of M O IR in mitigating modality dominance across diverse multi-modal settings. Our experiments are designed to answer the following questions: (1) Does M O IR mutually improve informativeness for both modalities? (2) Does M O IR improve modality balance without degrading task performance? (3) Is M O IR robust under modality degradation or bias? 4.1. Experimental Setup Datasets. We aim to show that M O IR can be applied to different forms of modality dominance, ranging from text-dominant to video-dominant settings. Hence, we evaluate M O IR on three representative multi-modal benchmarks covering different dominance regimes: ScienceQA [7] and VizWiz [11] for image-text reasoning, and MMBenchVideo [12] for video-audio-text reasoning. Implementation Details. We fine-tune LLaVA-1.5-7B [8], LLaVA-1.5-13B [8] and Qwen2.5-VL [9]. Since fine-tuning all VLM parameters can be computationally inefficient and prone to catastrophic forgetting [24], we adopt parameterefficient fine-tuning using LoRA [10]. During fine-tuning, M O IR is inserted between modality-specific encoders and the LLM decoder without altering the underlying model architecture. Specifically for LLaVA-1.5-7B and LLaVA-1.5-13B [8], M O IR is applied right before the image embeddings are interleaved into the text embedding sequence. For Qwen2.5VL [9], M O IR is applied after the vision encoder produces visual tokens and before LLM decoder.

,

Dataset

ScienceQA [7]

ScienceQA [7]

VizWiz [11]

MMBench-Video [12]

Modality

I+T

I+T

I+T

V+A+T

Model

LLaVA-1.5-7B [8]

LLaVA-1.5-13B [8]

LLaVA-1.5-7B [8]

Qwen2.5-VL [9]

Place.

Training

Acc. (↑)

Information Rank ∆I (↑)

Rank ∆T (↑)

MDI (↓)

AEI (↓)

Attn

FT FT w/ M O IR

73.68 70.53

12.35 35.95

30.98 35.07

198.49 89.97

8.70 8.21

MLP

FT FT w/ M O IR

71.58 70.53

12.37 32.59

30.64 33.73

192.72 79.83

8.69 8.12

Proj.

FT FT w/ M O IR

62.11 67.37

12.39 35.68

29.90 32.85

192.11 88.30

8.69 8.19

Attn

FT FT w/ M O IR

83.16 83.42

66.34 71.25

35.44 36.30

100.03 91.58

8.27 8.22

MLP

FT FT w/ M O IR

66.32 69.47

65.96 65.47

34.82 34.94

96.39 94.62

8.25 8.24

Proj.

FT FT w/ M O IR

65.26 63.15

52.23 47.23

36.22 37.25

79.09 73.15

8.12 8.06

Attn

FT FT w/ M O IR

28.22 32.47

18.32 20.65

31.83 32.88

81.70 73.16

10.97 10.43

MLP

FT FT w/ M O IR

33.38 30.16

19.87 17.95

29.75 26.39

91.19 84.73

10.72 10.65

Proj.

FT FT w/ M O IR

43.50 47.00

16.86 16.89

27.25 27.39

125.38 118.19

11.32 10.93

Attn

FT FT w/ M O IR

69.57 71.43

445.05 489.42

11.60 14.46

461.23 461.00

30.80 30.74

MLP

FT FT w/ M O IR

42.86 100.00

651.26 685.06

27.62 29.62

296.46 374.95

29.62 30.82

Proj.

FT FT w/ M O IR

52.38 60.87

651.46 1929.29

27.62 28.25

296.96 328.41

29.49 39.08

Table 1: This table summarizes performance, representational changes, and modality usage across diverse configurations. Modality indicates the input modalities (I+T: Image + Text, V+A+T: Video + Audio + Text). Place. denotes the layer type to which LoRA is applied: Attn denotes attention layers, MLP denotes feed-forward layers, and Proj. is a projection layers. Acc. reports the official benchmark accuracy from [11, 12, 7]. Rank∆I and Rank∆T denote changes in the effective rank of image/video and text token representation spaces, respectively. MDI denotes Modality Dominance Index [13] and AEI denotes Attention Efficiency Index [13]. Results are shown for standard LoRA fine-tuning (LoRA FT) and LoRA fine-tuning with the proposed Multi-modal Information Router (FT w/ M O IR). Higher Rank ∆I / Rank ∆T indicates stronger information contribution (higher value is better (denoted as ↑)) [17], whereas lower MDI and AEI indicate more balanced attention usage (lower value is better (denoted as ↓). [13] Hyperparameter Details. All models are trained for 10 epochs following [7, 11], with AdamW [25] optimizer, a learning rate of 2 × 10−4 and no weight decay, a batch size of 8, with a plateau-based learning rate scheduler. For parameter-efficient fine-tuning, we apply LoRA [10] with rank r = 16, scaling factor α = 32, and dropout rate 0.05. The maximum input sequence length is set to 2048 tokens. For M O IR, the routing coefficients αDA and αDB are initialized to 0.5. We set the exchange ratio k ′ to 0.10, but we conduct ablation studies by varying the routing ratio applied to the lowest-importance channels to analyze the sensitivity of M O IR to the degree of information routing. All experiments are conducted on a single NVIDIA H100-SXM5-80GB GPU. Evaluation Setup. For downstream task performance, we follow the official benchmark protocol written in the original dataset benchmark papers [7, 11, 12]. To quantify modality usage, we report the Modality Dominance Index (MDI) and Attention Efficiency Index (AEI) following prior work [13]. To analyze the changes in representation informativeness with M O IR, we measure the effective rank of token representation matrices following prior work [17]. This measurement shows

the distribution of representations across singular value directions [26]. 4.2. Quantitative Results Downstream Performance. The column Acc. in Table 1 shows the comparison of downstream task performance between standard fine-tuning (FT) and FT with M O IR. Across all benchmarks, M O IR maintains or improves task accuracy while significantly reducing modality dominance. Specifically, on ScienceQA, the accuracy gains from M O IR are relatively modest. We attribute this to the multiple-choice form of the dataset, where the answer is constrained and even partially grounded reasoning can still lead to correct answer selection. In contrast, clearer performance improvements are observed in VizWiz and MMBench-Video, which require stronger visual grounding and open-ended reasoning. Especially, the most significant gains appear on MMBenchVideo, that requires temporal reasoning over dynamic visual content. These improvements indicate that M O IR is effective in scenarios where visual evidence is indispensable and cannot be substituted by textual inputs.

All

Vision-dependent questions Vision-irrelevant questions

FT 62.13% FT + M O IR 29.63%

57.80% 25.20%

69.33% 37.00%

Table 2: Robustness. We replace each original image in the VizWiz dataset with Gaussian noise, and measure the rate of unchanged model predictions. Vision-dependent questions refer to questions whose correct answers require visual evidence from the image, whereas Vision-irrelevant questions can be answered without relying on visual content. A high unchanged rate means the model is insensitive to visual input. k′

Acc. (↑)

0.05 0.10 0.15

31.53 32.47 30.06

Information Rank ∆I (↑)

Rank ∆T (↑)

18.94 20.65 20.42

32.64 32.88 31.60

MDI (↓)

AEI (↓)

69.97 73.16 79.97

10.42 10.43 10.22

Table 3: This table shows the ablation studies by varying the exchange ratio k ′ in VizWiz dataset, while LoRA applied to the attention layer of LLaVA-1.5-7B model. Modality Dominance Analysis. The column Information in Table 1 shows information density, and the column MDI, AEI in Table 1 shows modality dominance reduction rate on both image-text benchmarks and video-audio-text benchmarks. Across all datasets and placements, M O IR consistently increases Rank ∆ I and Rank ∆ T. This increase in both image and text suggests that M O IR does not merely suppress one modality but enhances complementary information exchange, resulting in more information-dense representations. Also, M O IR substantially reduces MDI and AEI across nearly all configurations. This result shows that M O IR mitigates a disproportionate reliance on a single modality. Robustness. We further analyze modality reliance under visual corruption. As shown in Table 2, the baseline model produces the same predictions (62.13%) even after the image is replaced with noise, suggesting a substantial reliance on language even when visual input is removed. In particular, even for vision-dependent questions that require visual evidence, the model still maintains a high unchanged rate (57.80%). In contrast, M O IR significantly reduces the rate, indicating that predictions are more sensitive to visual inputs. These results demonstrate that M O IR mitigates spurious language reliance and promotes evidence-based multi-modal reasoning. Ablation Study. As shown in Table 3, we vary the exchange ratio k ′ on VizWiz dataset with LoRA applied to attention layers of LLaVA-1.5-7B model. We observe that k ′ = 0.1 achieves the best downstream performance and strongest information enhancement (Rank ∆I, Rank ∆T), while also maintaining competitive modality balance (MDI, AEI). 4.3. Qualitative Results Figure 3 presents qualitative comparisons on the MMBenchVideo dataset. The baseline (standard fine-tuning) model fre-

Fig. 3: This shows the qualitative comparison on MMBenchVideo dataset. The baseline often generates responses that either mimic the wording in the question or produce hallucinated answers that are not grounded in the video content. In contrast, M O IR produces video-grounded responses by relying on visual evidence from the frames. quently generates responses that either mimic the wording of the question (‘website plugin’), or produce generic statements (‘I see there is a video’), that are not grounded in the video content. In contrast, as shown in Figure 3, it correctly identifies ‘Paypal Honey’ as the plugin, and provides a more accurate description of the soccer match by referencing observable events. These examples further demonstrate that M O IR reduces spurious language reliance and encourages video-grounded reasoning, leading to more faithful and visually consistent predictions. 5. CONCLUSION In this paper, we revisit the problem of modality dominance in vision–language models from an information-centric perspective. Prior approaches assume that all modalities already provide sufficient information, which could not hold in realistic settings. To address this limitation, we propose M O IR, a Multi-modal Information Router that reduces information disparity across modalities. Concretely, M O IR identifies less informative tokens and selectively routes complementary information from a stronger modality to construct informationdense token representations. Extensive experiments across multiple benchmarks and model backbones demonstrate that M O IR consistently leads to more balanced modality contribution and improves robustness and downstream performance. This suggests that manipulating information is an effective and complementary strategy for mitigating modality dominance, and highlights the importance of information-level interventions for reliable multi-modal reasoning.

References [1] Zhe Chen, Jiannan Wu, Wenhai Wang, Weijie Su, Guo Chen, Sen Xing, Muyan Zhong, Qinglong Zhang, Xizhou Zhu, Lewei Lu, et al., “Internvl: Scaling up vi-

sion foundation models and aligning for generic visuallinguistic tasks,” in CVPR, 2024, pp. 24185–24198. [2] Wonjae Kim, Bokyung Son, and Ildoo Kim, “Vilt: Vision-and-language transformer without convolution or region supervision,” in International conference on machine learning. PMLR, 2021, pp. 5583–5594. [3] Mong Yuan Sim, Wei Emma Zhang, Xiang Dai, and Biaoyan Fang, “Can vlms actually see and read? a survey on modality collapse in vision-language models,” in Findings of the Association for Computational Linguistics: ACL 2025, 2025, pp. 24452–24470. [4] Jiayang Wu, Wensheng Gan, Zefeng Chen, Shicheng Wan, and Philip S Yu, “Multimodal large language models: A survey,” in BigData. IEEE, 2023, pp. 2247–2256. [5] Wujian Peng, Sicheng Xie, Zuyao You, Shiyi Lan, and Zuxuan Wu, “Synthesize diagnose and optimize: Towards fine-grained vision-language understanding,” in CVPR, 2024, pp. 13279–13288. [6] Weitong Cai, Jiabo Huang, Shaogang Gong, Hailin Jin, and Yang Liu, “Mllm as video narrator: Mitigating modality imbalance in video moment retrieval,” Pattern Recognition, vol. 166, pp. 111670, 2025. [7] Pan Lu, Swaroop Mishra, Tanglin Xia, Liang Qiu, KaiWei Chang, Song-Chun Zhu, Oyvind Tafjord, Peter Clark, and Ashwin Kalyan, “Learn to explain: Multimodal reasoning via thought chains for science question answering,” Neurips, vol. 35, pp. 2507–2521, 2022. [8] Haotian Liu, Chunyuan Li, Yuheng Li, and Yong Jae Lee, “Improved baselines with visual instruction tuning,” in CVPR, 2024, pp. 26296–26306. [9] Shuai Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, Sibo Song, Kai Dang, Peng Wang, Shijie Wang, Jun Tang, et al., “Qwen2. 5-vl technical report,” arXiv preprint arXiv:2502.13923, 2025. [10] Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen, et al., “Lora: Low-rank adaptation of large language models.,” ICLR, vol. 1, no. 2, pp. 3, 2022. [11] Danna Gurari, Qing Li, Abigale J Stangl, Anhong Guo, Chi Lin, Kristen Grauman, Jiebo Luo, and Jeffrey P Bigham, “Vizwiz grand challenge: Answering visual questions from blind people,” in CVPR, 2018, pp. 3608– 3617. [12] Xinyu Fang, Kangrui Mao, Haodong Duan, Xiangyu Zhao, Yining Li, Dahua Lin, and Kai Chen, “Mmbenchvideo: A long-form multi-shot benchmark for holistic video understanding,” Neurips, vol. 37, pp. 89098– 89124, 2024. [13] Huyu Wu, Meng Tang, Xinhan Zheng, and Haiyun Jiang, “When language overrules: Revealing text dominance in multimodal large language models,” arXiv preprint arXiv:2508.10552, 2025. [14] Adrián Javaloy, Maryam Meghdadi, and Isabel Valera, “Mitigating modality collapse in multimodal vaes via impartial optimization,” in International Conference on Machine Learning. PMLR, 2022, pp. 9938–9964.

[15] Jean Park, Kuk Jin Jang, Basam Alasaly, Sriharsha Mopidevi, Andrew Zolensky, Eric Eaton, Insup Lee, and Kevin Johnson, “Assessing modality bias in video question answering benchmarks with multimodal large language models,” in AAAI, 2025, vol. 39, pp. 19821– 19829. [16] Kiran Kokilepersaud, Seulgi Kim, Mohit Prabhushankar, and Ghassan AlRegib, “Hex: Hierarchical emergence exploitation in self-supervised algorithms,” arXiv preprint arXiv:2410.23200, 2024. [17] Seulgi Kim, Kiran Kokilepersaud, Mohit Prabhushankar, and Ghassan AlRegib, “Countering multimodal representation collapse through rank-targeted fusion,” arXiv preprint arXiv:2511.06450, 2025. [18] Kiran Kokilepersaud, Mohit Prabhushankar, and Ghassan AlRegib, “Adadim: Dimensionality adaptation for ssl representational dynamics,” arXiv preprint arXiv:2505.12576, 2025. [19] Cem Akkus, Luyang Chu, Vladana Djakovic, Steffen Jauch-Walser, Philipp Koch, Giacomo Loss, Christopher Marquardt, Marco Moldovan, Nadja Sauter, Maximilian Schneider, et al., “Multimodal deep learning,” arXiv preprint arXiv:2301.04856, 2023. [20] Ghazal Kaviani, Yavuz Yarici, Seulgi Kim, Mohit Prabhushankar, Ghassan AlRegib, Mashhour Solh, and Ameya Patil, “Hierarchical and multimodal data for daily activity understanding,” arXiv preprint arXiv:2504.17696, 2025. [21] Seulgi Kim, Ghazal Kaviani, Mohit Prabhushankar, and Ghassan AlRegib, “Multi-level and multi-modal action anticipation,” arXiv preprint arXiv:2506.02382, 2025. [22] Tadas Baltrušaitis, Chaitanya Ahuja, and Louis-Philippe Morency, “Multimodal machine learning: A survey and taxonomy,” TPAMI, vol. 41, no. 2, pp. 423–443, 2018. [23] Yuwei Zhou, Xin Wang, Hong Chen, Xuguang Duan, and Wenwu Zhu, “Intra-and inter-modal curriculum for multimodal learning,” in Proceedings of the 31st ACM International Conference on Multimedia, 2023, pp. 3724–3735. [24] James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, et al., “Overcoming catastrophic forgetting in neural networks,” Proceedings of the national academy of sciences, vol. 114, no. 13, pp. 3521– 3526, 2017. [25] Ilya Loshchilov, “Decoupled weight decay regularization,” arXiv preprint arXiv:1711.05101, 2017. [26] Olivier Roy and Martin Vetterli, “The effective rank: A measure of effective dimensionality,” in 2007 15th European signal processing conference. IEEE, 2007, pp. 606–610.

Record · ID 31256 · SHA-256 6b7caeaf651327ef
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.